POST blogpost/addtag

Adds the tag.

Request Information

Parameters

NameDescriptionAdditional information
tag
The tag.
            1) FriendlyUrl: Mandatory
            2) Tag: Mandatory
            3) Rating: DisplayOrder - If not provided will take the last display order and will add one.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "FriendlyUrl": "sample string 1",
  "Tag": "sample string 2",
  "Rating": 3
}

application/xml, text/xml

Sample:
<BlogPostTagModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models">
  <FriendlyUrl>sample string 1</FriendlyUrl>
  <Rating>3</Rating>
  <Tag>sample string 2</Tag>
</BlogPostTagModel>

application/x-www-form-urlencoded

Sample:

Sample not available.