EaserixDocs
DevelopersAPI referenceTasksComments

Comment on an issue

Notifies the issue's creator and assignee (minus the author). Imported comments (createdAt/authorEmail set) do not notify.

View as Markdown
POST
/v1/issues/{id}/comments
AuthorizationBearer <token>

In: header

Path Parameters

id*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/issues/497f6eca-6276-4993-bfeb-53cbbbba6f08/comments" \  -H "Content-Type: application/json" \  -d '{    "body": "string"  }'
{  "comment": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "issueId": "96179c34-d541-49af-b046-c06f0377732c",    "authorId": "ee6f7132-bd0a-4fcd-83b3-a8022377067b",    "body": "string",    "created": "2019-08-24T14:15:22Z",    "modified": "2019-08-24T14:15:22Z",    "author": {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "email": "string"    }  }}