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

Description

Returns a list of the comments for the task with the ID specified in the request.

Parameters
Name Description Type Example
taskid
sent in url
Task ID number 1234
Example
GET api/2.0/project/task/1234/comment
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of comments

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>