Tag Object


The Tags object represents the information for blog tags.

Properties
idstringRead-onlyformat GUID

Tag ID.


labelstringmaxLength 100

Tag label.

A blog can't have two tags with the same label.


slugstringmaxLength 100

Tag slug. For example, 'tag-slug'.


createdDatestringRead-onlyformat date-time

Date the tag was created.


updatedDatestringRead-onlyformat date-time

Date the tag was last updated.


publicationCountintegerRead-onlydeprecated - use publishedPostCount insteadminimum 0

Reserved for internal use.


postCountintegerRead-onlyminimum 0

Number of posts with this tag, including unpublished draft posts.


urlUrlRead-only

Tag URL.


publishedPostCountintegerRead-onlyminimum 0

Number of published posts with this tag.


translationIdstringRead-onlyformat GUID

ID of the tag translations.

All translations of a single tag share the same translationId.


languagestringformat LANGUAGE_TAG

Tag language.

2-or-4-letter language code in IETF BCP 47 language tag format.

Tag
JSON
{ "tag": { "id": "33b7a30f-ca8a-4678-84c4-0bab5e3ebf63", "label": "vacation", "slug": "vacation", "createdDate": "2021-06-21T08:27:09.764Z", "updatedDate": "2021-06-21T08:27:09.764Z", "publicationCount": 3, "postCount": 10, "language": "fr" } }
Did this help?