GET api/2.0/project/message/{messageid}/comment
Returns a list of comments for the discussion message within a project with the ID specified in the request.
Name |
Description |
Type |
Example |
messageid
sent in url
|
Message ID
|
number
|
1234
|
GET api/2.0/project/message/1234/comment
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": "2022-05-23T06:33:44.5296510Z",
"updated": "2022-05-23T06:33:44.5296510Z"
}
]
}
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>2022-05-23T06:33:44.5296510Z</created>
<updated>2022-05-23T06:33:44.5296510Z</updated>
</response>
</result>