POST api/2.0/community/blog
Creates a blog post with the specified title, content, tags and subscription to comments defined in the request body
Name |
Description |
Type |
Example |
title
sent in body
|
New post 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
|
subscribeComments
sent in body
|
Subscribe to post comments
|
Bool value
|
true
|
Sending data in application/json:
{
title:"My post",
content:"Post content",
tags:"Me,Post,News",
subscribeComments: "true"
}
Sending data in application/x-www-form-urlencoded
title="My post"&content="Post content"&tags="Me,Post,News"&subscribeComments="true"
application/json
{
"status": 0,
"response": {
"id": "00000000-0000-0000-0000-000000000000",
"title": "Example post",
"created": "2021-04-23T05:12:36.2494989Z",
"updated": "2021-04-23T05:12:36.2494989Z",
"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-04-23T05:12:36.2494989Z</created>
<updated>2021-04-23T05:12:36.2494989Z</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>