Update Item

Update field values on an existing item

Parameters

ParameterTypeRequiredDescription
item_idnumberRequiredItem ID
fieldsobjectOptionalField values keyed by field_id
field_idnumberOptionalSingle field update (with field_value)
field_valueobjectOptionalValue for single field
file_idsarrayOptionalFile IDs to attach
tagsarrayOptionalTags to set

Optional Flags

ParameterTypeRequiredDescription
hookbooleanOptionalExecute hooks
silentbooleanOptionalSuppress notifications
id_onlybooleanOptionalReturn only item_id

Examples

MCP Tool Call

{
  "name": "podio_updateItem",
  "arguments": {
    "item_id": 12345,
    "fields": "example",
    "field_id": 12345,
    "field_value": "example",
    "file_ids": "example",
    "tags": "example",
    "hook": true,
    "silent": true,
    "id_only": true
  }
}

REST API

curl -X POST https://api.syncello.io/v1/tools/podio/updateItem \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "item_id": 12345,
  "fields": "example",
  "field_id": 12345,
  "field_value": "example",
  "file_ids": "example",
  "tags": "example",
  "hook": true,
  "silent": true,
  "id_only": true
}'