Update Comment
Update a comment
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
comment_id | number | Required | Comment ID |
value | string | Required | New comment text |
file_ids | array | Optional | File IDs to attach |
embed_url | string | Optional | URL to embed |
external_id | string | Optional | External identifier |
Examples
MCP Tool Call
{
"name": "podio_updateComment",
"arguments": {
"comment_id": 12345,
"value": "example",
"file_ids": "example",
"embed_url": "example",
"external_id": "example"
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/updateComment \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"comment_id": 12345,
"value": "example",
"file_ids": "example",
"embed_url": "example",
"external_id": "example"
}'