GET api/2.0/project/comment/{commentid} This function requires authentication

Description

Returns the information about a comment with the ID specified in the request.

Parameters
Name Description Type Example
commentid
sent in url
Comment ID guid 9924256A-739C-462b-AF15-E652A3B1B6EB
Example
GET api/2.0/project/comment/%229924256A-739C-462b-AF15-E652A3B1B6EB%22
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Comment

Example Response

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>