Create Item

Create a new item in a Podio app

Parameters

ParameterTypeRequiredDescription
app_idnumberRequiredApp ID
fieldsobjectRequiredField values keyed by field_id
external_idstringOptionalExternal ID for linking
file_idsarrayOptionalFile IDs to attach
tagsarrayOptionalTags to add

Optional Flags

ParameterTypeRequiredDescription
hookbooleanOptionalExecute hooks
silentbooleanOptionalSuppress notifications
id_onlybooleanOptionalReturn only item_id (default: true to save context)

Examples

MCP Tool Call

{
  "name": "podio_createItem",
  "arguments": {
    "app_id": 12345,
    "fields": "example",
    "external_id": "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/createItem \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "app_id": 12345,
  "fields": "example",
  "external_id": "example",
  "file_ids": "example",
  "tags": "example",
  "hook": true,
  "silent": true,
  "id_only": true
}'