Blog Posts

Get all posts

Retrieve all blog posts, with paging and filtering options. This method would be useful for an integration that ingests posts and suggests edits.

get/cms/v3/blogs/posts

Query parameters

afterstring

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.

archivedboolean

Specifies whether to return deleted blog posts. Defaults to false.

createdAfterstring date-time

Only return blog posts created after the specified time.

createdAtstring date-time

Only return blog posts created at exactly the specified time.

createdBeforestring date-time

Only return blog posts created before the specified time.

limitinteger

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

propertystring
sortstring[]

Specifies which fields to use for sorting results. Valid fields are createdAt (default), name, updatedAt, createdBy, updatedBy.

updatedAfterstring date-time

Only return blog posts last updated after the specified time.

updatedAtstring date-time

Only return blog posts last updated at exactly the specified time.

updatedBeforestring date-time

Only return blog posts last updated before the specified time.

Response

successful operation

totalinteger required

Total number of blog posts.

Changes