GET api/2.0/project/task/{taskid}/commentДанная функция требует аутентификацииОписание Параметры
Пример GET api/2.0/project/task/1234/comment Host: yourportal.Р7.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-11-03T15:35:58.0618644Z",
"updated": "2022-11-03T15:35:58.0618644Z"
}
]
} 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-11-03T15:35:58.0618644Z</created>
<updated>2022-11-03T15:35:58.0618644Z</updated>
</response>
</result> |