Get all Blogs
GET {{baseUrl}}/cms/v3/blog-settings/settings?createdAt=<dateTime>&createdAfter=<dateTime>&createdBefore=<dateTime>&updatedAt=<dateTime>&updatedAfter=<dateTime>&updatedBefore=<dateTime>&sort=<string>&sort=<string>&after=<string>&limit=<integer>&archived=<boolean>
Get the list of Blogs. Supports paging and filtering. This method would be useful for an integration that examined these models and used an external service to suggest edits.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
createdAt | string | Only return Blogs created at exactly the specified time. | |
createdAfter | string | Only return Blogs created after the specified time. | |
createdBefore | string | Only return Blogs created before the specified time. | |
updatedAt | string | Only return Blogs last updated at exactly the specified time. | |
updatedAfter | string | Only return Blogs last updated after the specified time. | |
updatedBefore | string | 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 | |
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 | string | The maximum number of results to return. Default is 100. | |
archived | string | Specifies whether to return archived Blogs. Defaults to false . |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"results":[{"absoluteUrl":"\u003cstring\u003e","allowComments":"\u003cboolean\u003e","created":"\u003cdateTime\u003e","deletedAt":"\u003cdateTime\u003e","description":"\u003cstring\u003e","htmlTitle":"\u003cstring\u003e","id":"\u003cstring\u003e","language":"vai-lr","name":"\u003cstring\u003e","publicAccessRulesEnabled":"\u003cboolean\u003e","publicTitle":"\u003cstring\u003e","slug":"\u003cstring\u003e","translatedFromId":"\u003cstring\u003e","updated":"\u003cdateTime\u003e"},{"absoluteUrl":"\u003cstring\u003e","allowComments":"\u003cboolean\u003e","created":"\u003cdateTime\u003e","deletedAt":"\u003cdateTime\u003e","description":"\u003cstring\u003e","htmlTitle":"\u003cstring\u003e","id":"\u003cstring\u003e","language":"en-gh","name":"\u003cstring\u003e","publicAccessRulesEnabled":"\u003cboolean\u003e","publicTitle":"\u003cstring\u003e","slug":"\u003cstring\u003e","translatedFromId":"\u003cstring\u003e","updated":"\u003cdateTime\u003e"}],"total":"\u003cinteger\u003e","paging":{"next":{"after":"\u003cstring\u003e","link":"\u003cstring\u003e"}}}