Functions API

Podio Item Fields Update

App Builder & Automation Expert

Stay Updated with ProcFu!

Subscribe to our newsletter for the latest tips, updates, and automation insights.

Subscribe Now

podio_item_fields_update.pf

The 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 to 1, the update will not trigger Podio notifications.
  • hook (optional, default: 0): If set to 1, 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);

Love using ProcFu Guide?

Share your testimonial and let us know how ProcFu has helped you.

Share Your Testimonial

Built with ❤️ by Thaha for the Community