Get all Blog Tags

GET {{baseUrl}}/cms/v3/blogs/tags?createdAt=<dateTime>&createdAfter=<dateTime>&createdBefore=<dateTime>&updatedAt=<dateTime>&updatedAfter=<dateTime>&updatedBefore=<dateTime>&sort=<string>&sort=<string>&after=<string>&limit=<integer>&archived=<boolean>&property=<string>

Get the list of blog tags. 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

KeyDatatypeRequiredDescription
createdAtstringOnly return Blog Tags created at exactly the specified time.
createdAfterstringOnly return Blog Tags created after the specified time.
createdBeforestringOnly return Blog Tags created before the specified time.
updatedAtstringOnly return Blog Tags last updated at exactly the specified time.
updatedAfterstringOnly return Blog Tags last updated after the specified time.
updatedBeforestringOnly return Blog Tags last updated before the specified time.
sortstringSpecifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.
sortstringSpecifies which fields to use for sorting results. Valid fields are name, createdAt, updatedAt, createdBy, updatedBy. createdAt will be used by default.
afterstringThe 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.
limitstringThe maximum number of results to return. Default is 100.
archivedstringSpecifies whether to return deleted Blog Tags. Defaults to false.
propertystring

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;results&quot;:[{&quot;created&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;deletedAt&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;language&quot;:&quot;rw&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;translatedFromId&quot;:&quot;\u003clong\u003e&quot;,&quot;updated&quot;:&quot;\u003cdateTime\u003e&quot;},{&quot;created&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;deletedAt&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;id&quot;:&quot;\u003cstring\u003e&quot;,&quot;language&quot;:&quot;en-ca&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;translatedFromId&quot;:&quot;\u003clong\u003e&quot;,&quot;updated&quot;:&quot;\u003cdateTime\u003e&quot;}],&quot;total&quot;:&quot;\u003cinteger\u003e&quot;,&quot;paging&quot;:{&quot;next&quot;:{&quot;after&quot;:&quot;\u003cstring\u003e&quot;,&quot;link&quot;:&quot;\u003cstring\u003e&quot;}}}