Delete Comment

Delete a comment by ID

Parameters

ParameterTypeRequiredDescription
comment_idnumberRequiredComment ID
hookbooleanOptionalExecute 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
}'