POST
/
task
/
{taskId}
/
comments
cURL
curl --request POST \
  --url https://api.teamcamp.app/v1.0/task/{taskId}/comments \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --data '{
  "content": "<string>"
}'
{
  "commentId": "<string>",
  "content": "<string>"
}

Authorizations

apiKey
string
header
required

Body

application/json

Project to add to the Workspace

content
string

Comment's content

Response

plant response

commentId
string

The unique identifier of the comment in the task.

content
string

The unique identifier of the user who posted the message.