GET api/2.0/project/message/{messageid}/comment
Returns a list of the discussion message comments from 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": "\\/Products\\/People\\/Profile.aspx?user=administrator"
},
"Text": "comment text",
"ParentId": "00000000-0000-0000-0000-000000000000",
"Inactive": false,
"CanEdit": false,
"Created": "2020-12-22T04:11:56.5008512Z",
"Updated": "2020-12-22T04:11:56.5008512Z"
}
]
}
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>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl>
</CreatedBy>
<Text>comment text</Text>
<ParentId>00000000-0000-0000-0000-000000000000</ParentId>
<Inactive>False</Inactive>
<CanEdit>False</CanEdit>
<Created>2020-12-22T04:11:56.5008512Z</Created>
<Updated>2020-12-22T04:11:56.5008512Z</Updated>
</response>
</result>