Get Blogs list in Blogger

Purpose 

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

HTTP Request URL

https://{zohoapis_domain}/writer/api/v1/apps/blog/blogger/accounts/{{account_id}}/blogs

Path Parameter

ParameterData TypeDescription
Mandatory Parameters
account_idStringSpecify the unique id of your Blogger account.

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/"
    }
  ]
}