Functions API
Podio App Search

Thaha
App Builder & Automation Expert
Stay Updated with ProcFu!
Subscribe to our newsletter for the latest tips, updates, and automation insights.
Subscribe NowThe Podio App Search function allows you to search for items within a specific Podio app based on field values.
Arguments
- app_id (required): The ID of the Podio app to search within.
- field_id (required): The field ID you want to match the value against.
- search_value (required): The actual value you're searching for.
- condition Comparison operator. Options include:
E
– EqualsC
– Contains
- max_results: Maximum number of results to return upto 20.
- simplified (optional, default:
0
): If set to1
, returns a simplified version of the item data.
Returns
Returns a JSON array of Podio items that match the criteria.
Example
// Search Podio App for items where field with ID 123456 equals "invoice-001"
$results = podio_app_search("654321", "123456", "invoice-001", "E", 1, 0);
if ($results[0]) {
// Item exists, do something with it
$item_id = $results[0]["item_id"];
}