Get Blogs List In Blogger

Purpose

To retrieve the list of blogs available in your Blogger account.

Quick Reference

PropertyValue
MethodGET
Request URLhttps://{zohoapis_domain}/writer/api/v1/apps/blog/blogger/accounts/{account_id}/blogs
ScopesZohoWriter.documentEditor.ALL
Rate LimitSee Writer API throttle limits

Parameters

Path Parameters

ParameterData TypeMandatory/OptionalDescription
account_idStringMandatorySpecify the unique id of your Blogger account.

Notes

Sample Request

Copiedcurl "https://www.zohoapis.com/writer/api/v1/apps/blog/blogger/accounts/{account_id}/blogs"
-X GET
-H "Authorization: Zoho-oauthtoken xyz"

Sample Response

Copied{
  "blogs": [
    {
      "name": "zylker1",
      "blog_id": "12222222222222",
      "url": "http://zylker.blogspot.com/"
    },
    {
      "name": "zylker2",
      "blog_id": "122333344444444",
      "url": "http://zylker2.blogspot.com/"
    }
  ]
}

Deluge Snippet

Copiedresponse = invokeurl
[
	url :"https://www.zohoapis.com/writer/api/v1/apps/blog/blogger/accounts/{account_id}/blogs"
	type :GET
	connection:"<connection_name>"
];
info response;