Podio API Documentation
Items: Find referenceable items
Used to find possible items for a given application field. It searches the relevant apps for items matching the given text.
Usage
- PHP Client
-
PodioItem.php
PodioItem::search_field( $field_id, $attributes = array() );
- Ruby Gem
-
item.rb
Podio::Item.search_field( field_id, options = {} )
Parameters
- field_id*
- Required.
- limit
The maximum number of results to return
Default value: 13- not_item_id
If supplied the items with these ids will not be returned
- text
The text to search for. The search will be lower case, and with a wildcard in each end.
Response
[
{
"item_id": the id of the item,
"title": The title of the item,
"initial_revision": The initial revision of the item
{
"revision": The revision number of the item,
"user": The user who created the revision,
{
"user_id": The id of the user,
"avatar": The avatar of the user,
"name": The full name of the user
},
"created_on": The date and time when the item was created,
},
"app": The app the item is in,
{
"app_id": The id of the app,
"name": The name of the app
"item_name": The name of a single item in an app
"icon": The icon of the app,
}
},
... (more items)
]
Sandbox
Try the operation "/item/field/{field_id}/find"You can simulate the API request by filling out the arguments below, and press the submit button to see the response.
You need to be logged in to Podio to use the Sandbox. Login here