Podio API Documentation
Items: Get item references
Returns up to thousand items that have a reference to the given item. The references are grouped by app. Both the apps and the items are sorted by title.
Usage
- PHP Client
-
PodioItem.php
PodioItem::get_references( $item_id );
Parameters
- item_id*
- Required.
- limit
The maximum number of Items returned
Default value: 1000
Response
[
{
"app": The app the item is referenced from,
{
"app_id": The id of the app,
"name": The name of the app,
"item_name": The item name of the app,
"icon": The icon of the app,
},
"field": The field the item is referenced from,
{
"field_id": The id of the field,
"type": The type of the field (always "app"),
"label": The label of the field
},
"items": The items in the app that references the given item
[
{
"item_id": The id of the item,
"title": The title of the item
},
... (more items)
]
},
... (more applications/fields)
]
Sandbox
Try the operation "/item/{item_id}/reference/"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