Delete Comment
Delete a comment by ID
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
comment_id | number | Required | Comment ID |
hook | boolean | Optional | Execute hooks (default: true) |
Examples
MCP Tool Call
{
"name": "podio_deleteComment",
"arguments": {
"comment_id": 12345,
"hook": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/deleteComment \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"comment_id": 12345,
"hook": true
}'