Add Comment To Object
Add a comment to an item, task, or status
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Required | Object type: item, task, status |
id | number | Required | Object ID |
value | string | Required | Comment text |
file_ids | array | Optional | File IDs to attach |
embed_url | string | Optional | URL to embed |
silent | boolean | Optional | Suppress notifications |
alert_invite | boolean | Optional | Invite mentioned users to workspace |
hook | boolean | Optional | Execute hooks (default: true) |
external_id | string | Optional | External 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"
}'