Get Item
Retrieve a Podio item by ID
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
item_id | number | Required | Item ID |
field_id | number | Optional | Single field ID to retrieve |
Optional Flags
| Parameter | Type | Required | Description | Options |
|---|---|---|---|---|
field_ids | array | Optional | Field IDs to include | |
field_types | string | Optional | Filter fields by type: all (default), basic (exclude calculations), calculation (only calculations) | allbasiccalculation |
field_values_only | boolean | Optional | Return field values only | |
summary_only | boolean | Optional | Return metadata only | |
files_only | boolean | Optional | Return files only |
Examples
MCP Tool Call
{
"name": "podio_getItem",
"arguments": {
"item_id": 12345,
"field_id": 12345,
"field_ids": "value",
"field_types": "value",
"field_values_only": true,
"summary_only": true,
"files_only": true
}
}REST API
curl -X POST https://api.syncello.io/v1/tools/podio/getItem \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"item_id": 12345,
"field_id": 12345,
"field_ids": "value",
"field_types": "value",
"field_values_only": true,
"summary_only": true,
"files_only": true
}'