action attio_delete_comment { label: "Delete a comment" description: "Deletes a comment by ID. If deleting a comment at the head of a thread, all messages in the thread are also deleted.\n\nRequired scopes: `comment:read-write`." provider: attio method: DELETE path: "/v2/comments/{comment_id}" encoding: json scopes: ["comment:read-write"] input: { type: "object" properties: { comment_id: { type: "string" format: "uuid" description: "The ID of the comment to delete." } } required: ["comment_id"] additionalProperties: false } output: { type: "object" description: "Success" properties: {} } }