curl --request DELETE \
--url http://localhost:3333/v1/comments/{commentId} \
--header 'X-API-Key: <api-key>'{
"success": true,
"deletedCommentId": "cmt_abc123def456",
"message": "Comment deleted successfully"
}Delete a comment and all its attachments (author only)
curl --request DELETE \
--url http://localhost:3333/v1/comments/{commentId} \
--header 'X-API-Key: <api-key>'{
"success": true,
"deletedCommentId": "cmt_abc123def456",
"message": "Comment deleted successfully"
}API key for authentication
Organization ID (required for session auth, optional for API key auth)
Unique comment identifier
"cmt_abc123def456"
Was this page helpful?