curl --request PUT \
--url http://localhost:3333/v1/comments/{commentId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"content": "This task needs to be completed by end of week (updated)",
"contextUrl": "https://app.trycomp.ai/org_abc123/risk/rsk_abc123?taskItemId=tki_abc123#task-items",
"userId": "usr_abc123def456"
}
'{
"id": "cmt_abc123def456",
"content": "This task needs to be completed by end of week",
"author": {
"id": "usr_abc123def456",
"name": "John Doe",
"email": "john.doe@company.com",
"image": "https://example.com/avatar.jpg",
"deactivated": false
},
"attachments": [
{
"id": "att_abc123def456",
"name": "document.pdf",
"type": "application/pdf",
"createdAt": "2024-01-15T10:30:00Z"
}
],
"createdAt": "2024-01-15T10:30:00Z"
}Update the content of an existing comment (author only)
curl --request PUT \
--url http://localhost:3333/v1/comments/{commentId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"content": "This task needs to be completed by end of week (updated)",
"contextUrl": "https://app.trycomp.ai/org_abc123/risk/rsk_abc123?taskItemId=tki_abc123#task-items",
"userId": "usr_abc123def456"
}
'{
"id": "cmt_abc123def456",
"content": "This task needs to be completed by end of week",
"author": {
"id": "usr_abc123def456",
"name": "John Doe",
"email": "john.doe@company.com",
"image": "https://example.com/avatar.jpg",
"deactivated": false
},
"attachments": [
{
"id": "att_abc123def456",
"name": "document.pdf",
"type": "application/pdf",
"createdAt": "2024-01-15T10:30:00Z"
}
],
"createdAt": "2024-01-15T10:30:00Z"
}API key for authentication
Organization ID (required for session auth, optional for API key auth)
Unique comment identifier
"cmt_abc123def456"
Updated content of the comment
2000"This task needs to be completed by end of week (updated)"
Optional URL of the page where the comment was updated, used for deep-linking in notifications
2048"https://app.trycomp.ai/org_abc123/risk/rsk_abc123?taskItemId=tki_abc123#task-items"
User ID of the comment author (required for API key auth, ignored for JWT auth)
"usr_abc123def456"
Comment updated successfully
Unique identifier for the comment
"cmt_abc123def456"
Comment content
"This task needs to be completed by end of week"
Comment author information
Show child attributes
Attachment metadata (URLs generated on-demand)
Show child attributes
Comment creation timestamp
"2024-01-15T10:30:00Z"
Was this page helpful?