GET
/
cms
/
v3
/
blog-settings
/
settings
Get all Blogs
curl --request GET \
  --url https://api.hubapi.com/cms/v3/blog-settings/settings \
  --header 'Authorization: Bearer <token>'
{
  "total": 123,
  "paging": {
    "next": {
      "link": "",
      "after": ""
    }
  },
  "results": [
    {
      "created": "2023-11-07T05:31:56Z",
      "absoluteUrl": "<string>",
      "description": "<string>",
      "language": "af",
      "translatedFromId": "<string>",
      "publicAccessRules": [
        {}
      ],
      "publicTitle": "<string>",
      "allowComments": true,
      "deletedAt": "2023-11-07T05:31:56Z",
      "htmlTitle": "<string>",
      "publicAccessRulesEnabled": true,
      "name": "<string>",
      "id": "<string>",
      "updated": "2023-11-07T05:31:56Z",
      "slug": "<string>"
    }
  ]
}
Produtos suportados
Requer um dos seguintes produtos ou superior.
Marketing HubMarketing HubProfessional
Sales HubSales HubGrátis
Service HubService HubGrátis
Content HubContent HubStarter

Escopos Necessários

Esta API requer um dos seguintes escopos:
  • content

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

createdAt
string<date-time>

Only return Blogs created at exactly the specified time.

createdAfter
string<date-time>

Only return Blogs created after the specified time.

createdBefore
string<date-time>

Only return Blogs created before the specified time.

updatedAt
string<date-time>

Only return Blogs last updated at exactly the specified time.

updatedAfter
string<date-time>

Only return Blogs last updated after the specified time.

updatedBefore
string<date-time>

Only return Blogs last updated before the specified time.

sort
string[]

Specifies which fields to use for sorting results. Valid fields are name and id

after
string

The cursor token value to get the next set of results. You can get this from the paging.next.after JSON property of a paged response containing more results.

limit
integer

The maximum number of results to return. Default is 100.

archived
boolean

Specifies whether to return archived Blogs. Defaults to false.

Response

successful operation

Response object for collections of blogs with pagination information.

total
integer
required

Total number of blogs.

results
object[]
required

Collection of blogs.

paging
object

Model definition for forward paging.