PUT api/2.0/community/blog/{postid}
Updates the specified post changing the post title, content or/and tags specified
Name |
Description |
Type |
Example |
postid
sent in url
|
post ID
|
guid
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
title
sent in body
|
new title
|
string
|
some text
|
content
sent in body
|
new post text
|
string
|
some text
|
tags
sent in body
|
tag list separated with ','
|
string
|
some text
|
Sending data in application/json:
{
title:"My post",
content:"Post content",
tags:"Me,Post,News"
}
Sending data in application/x-www-form-urlencoded
title="My post"&content="Post content"&tags="Me,Post,News"
application/json
{
"status": 0,
"response": {
"id": "00000000-0000-0000-0000-000000000000",
"title": "Example post",
"created": "2021-03-06T18:32:50.3081095Z",
"updated": "2021-03-06T18:32:50.3081095Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"tags": [
"Tag1",
"Tag2"
],
"text": "Post text"
}
}
text/xml
<result>
<status>0</status>
<response>
<id>00000000-0000-0000-0000-000000000000</id>
<title>Example post</title>
<created>2021-03-06T18:32:50.3081095Z</created>
<updated>2021-03-06T18:32:50.3081095Z</updated>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<tags>Tag1</tags>
<tags>Tag2</tags>
<text>Post text</text>
</response>
</result>