Add Comment To Object

Add a comment to an item, task, or status

Parameters

ParameterTypeRequiredDescription
typestringRequiredObject type: item, task, status
idnumberRequiredObject ID
valuestringRequiredComment text
file_idsarrayOptionalFile IDs to attach
embed_urlstringOptionalURL to embed
silentbooleanOptionalSuppress notifications
alert_invitebooleanOptionalInvite mentioned users to workspace
hookbooleanOptionalExecute hooks (default: true)
external_idstringOptionalExternal identifier

Examples

MCP Tool Call

{
  "name": "podio_addCommentToObject",
  "arguments": {
    "type": "example",
    "id": 12345,
    "value": "example",
    "file_ids": "example",
    "embed_url": "example",
    "silent": true,
    "alert_invite": true,
    "hook": true,
    "external_id": "example"
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/addCommentToObject \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "type": "example",
  "id": 12345,
  "value": "example",
  "file_ids": "example",
  "embed_url": "example",
  "silent": true,
  "alert_invite": true,
  "hook": true,
  "external_id": "example"
}'