curl --location --request POST 'https://open.teambition.com/api/task/comment/create' \
--header 'Authorization: Bearer <appAccessToken>' \
--header 'X-Tenant-Id: 50c32af35a87e6b2...' \
--header 'X-Tenant-Type: organization' \
--header 'Content-Type: application/json' \
--data-raw '{
"creatorId": "5ac4a9089f8f22000108241b",
"taskId": "5f1aa4134099eb072c0b201f",
"comment": "xxxx"
}'
{
"code": 200,
"errorMessage": "",
"result": {
"comment": "xxxx",
"commentId": "5f1e798190765b0a5619190a",
"created": "2020-07-27T06:51:45.873Z",
"creatorId": "5ac4a9089f8f22000108241b",
"updated": "2020-07-27T06:51:45.873Z"
}
}