DELETE blogpost/removetag
Removes a tag.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| tag | The tag.
1) FriendlyUrl: Mandatory
2) Tag: Mandatory
3) Rating: DisplayOrder - If not provided will delete the first tag based on "Tag". |
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.