Print

What can I use this call for?

It returns the schema for a specific app. You get to know all of the app-fields in the app which is handy to know on what you can filter.

The goal is to only use this API call during development as a reference tool. You best hardcode the schema info in your app and do NOT load this api call on every user request as the information is very static.

Request

[GET] apps/{{APP ID}}_{{APP TOKEN}}

Response

{ 
 "name":"Activities",
 "url_label":"acitivities",
 "podio_id":14102419,
 "icon_url":"https://d2cmuesa4snpwn.cloudfront.net/images/emails/app-icons/84.png",
 "app_fields":[ 
 { "podio_id":1, "label":"Activity", "external_id":"codename", "data_type":"text", ...},
 { "podio_id":2, "label":"Category", "external_id":"category", "data_type":"app", ...}
 { "podio_id":3, "label":"Start", "external_id":"start-date", "data_type":"date", ...}
 ]
}

With this response you can start building your API calls to filter items.

In dit artikel: