Table of Contents


Article Tag

Provides access to the data fields of a post's tags.

The entity's name is: BlogTag.

 

API NameLabelRequiredData TypeDescription
BlogIdArticle TypeYesLookup(Article Type)The Article Type this tag belongs to, controlling its context.
CreatedByIdCreated ByNoLookup(User)The user who originally created this tag record. Read-Only.
CreatedOnCreated OnNoDateTimeTimestamp when the tag was first created. Read-Only.
IdIdNoIDSystem-generated unique identifier for the tag record. Read-Only.
IsDeletedDeletedNoCheckboxSoft-delete flag (checked if the tag is in the recycle bin).
ModifiedByIdModified ByNoLookup(User)The user who last modified this tag record. Read-Only.
ModifiedOnModified OnNoDateTimeTimestamp of the most recent update to this tag. Read-Only.
NameNameYesText(120)The human-readable tag label (displayed on articles).
OwnerIdOwnerNoLookup(User)Record owner, used for sharing and security permissions.
UseCountUse CountNoRollup SummaryNumber of articles currently assigned this tag (auto-calculated).

The following entity assigns tags to different posts:

The entity name is: "BlogPostTag".

API NameLabelRequiredData TypeDescription
BlogPostIdArticle PostYesLookup(Post)The parent Post to which this tag assignment belongs.
BlogTagIdArticle TagNoMasterDetail(Article Tag)The Tag being applied to the Post.
CreatedByIdCreated ByNoLookup(User)User who created this tag-assignment record. Read-Only.
CreatedOnCreated OnNoDateTimeTimestamp when this record was first created. Read-Only.
IdIdNoIDSystem-generated unique identifier for the tag-assignment. Read-Only.
IsDeletedDeletedNoCheckboxSoft-delete flag (checked if the record is in the recycle bin).
ModifiedByIdModified ByNoLookup(User)User who last modified this record. Read-Only.
ModifiedOnModified OnNoDateTimeTimestamp of the most recent modification. Read-Only.
NameBlog Post Tag No.NoAuto NumberAuto-generated sequence number for each tag-assignment record.