Functions API
Podio Item Create

Thaha
App Builder & Automation Expert
Stay Updated with ProcFu!
Subscribe to our newsletter for the latest tips, updates, and automation insights.
Subscribe NowThe Podio Item Create function creates a new item in a specified Podio app. You can pass a full set of fields and optional control parameters to configure the item creation behavior.
Arguments
- app_id (required): The ID of the Podio app where the new item should be created.
- fields (required): A JSON-encoded array of field values. Use external IDs or field IDs as keys.
- silent (optional, default:
0
): Set to1
to create the item without triggering notifications. - hook (optional, default:
0
): Set to1
to allow webhooks to fire.
Returns
Returns the item_id of the newly created item.
Example
$app_id = "98765432";
$fields = [
"title" => json_encode("New Lead"),
"email" => json_encode("lead@example.com"),
"status" => json_encode("New")
];
$response = podio_item_create($app_id, json_encode($fields), 0, 1);