GET api/2.0/project/comment/{commentid}
Returns the information about the comment with the ID specified in the request
Name |
Description |
Type |
Example |
commentid
sent in url
|
Comment ID
|
guid
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
GET api/2.0/project/comment/9924256A-739C-462b-AF15-E652A3B1B6EB
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"id": "00000000-0000-0000-0000-000000000000",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"text": "comment text",
"parentId": "00000000-0000-0000-0000-000000000000",
"inactive": false,
"canEdit": false,
"created": "2021-01-21T09:11:56.0312576Z",
"updated": "2021-01-21T09:11:56.0312576Z"
}
}
text/xml
<result>
<status>0</status>
<response>
<id>00000000-0000-0000-0000-000000000000</id>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<text>comment text</text>
<parentId>00000000-0000-0000-0000-000000000000</parentId>
<inactive>false</inactive>
<canEdit>false</canEdit>
<created>2021-01-21T09:11:56.0312576Z</created>
<updated>2021-01-21T09:11:56.0312576Z</updated>
</response>
</result>