Create Item
Create a new item in a Podio app
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
app_id | number | Required | App ID |
fields | object | Required | Field values keyed by field_id |
external_id | string | Optional | External ID for linking |
file_ids | array | Optional | File IDs to attach |
tags | array | Optional | Tags to add |
Optional Flags
| Parameter | Type | Required | Description |
|---|---|---|---|
hook | boolean | Optional | Execute hooks |
silent | boolean | Optional | Suppress notifications |
id_only | boolean | Optional | Return 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
}'