Update Comment

Update a comment

Parameters

ParameterTypeRequiredDescription
comment_idnumberRequiredComment ID
valuestringRequiredNew comment text
file_idsarrayOptionalFile IDs to attach
embed_urlstringOptionalURL to embed
external_idstringOptionalExternal 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"
}'