Functions API
Podio Item Fields Update

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 Fields Update function allows you to update the field values of an existing item in a Podio app.
Arguments
- podio_item_id (required): The ID of the Podio item you want to update.
- values (required): A JSON-encoded array of field values. Keys must match the external IDs or labels of fields in your Podio app.
- silent (optional, default:
0
): If set to1
, the update will not trigger Podio notifications. - hook (optional, default:
0
): If set to1
, webhooks will be triggered.
Returns
Returns a confirmation response - OK.
Example
$item_id = "123456789";
$fields = [
"status" => json_encode("Completed"),
"progress" => json_encode("100%"),
"updated-by" => json_encode("ProcFu Script")
];
$response = podio_item_fields_update($item_id, json_encode($fields), 1, 0);