Podio API Documentation
Calendar: Get app calendar
Returns the items and tasks that are related to the given app.
Usage
- PHP Client
-
PodioCalendarEvent.php
PodioCalendarEvent::get_for_app( $app_id, $attributes = array() );
- Ruby Gem
-
calendar_event.rb
Podio::CalendarEvent.find_all_for_app( app_id, options = {} )
Parameters
- app_id*
- Required.
- date_from
The date to return events from
- date_to
The date to search to
- priority
The minimum priority for the events to return
Default value: 1- tasks
True if tasks should be included in the calendar, false otherwise
Default value: true
Response
[
{
"type": The type of the entry, either "task", "item" or "meeting",
"id": The id of the entry,
"group": The group of the object, null for tasks and app item name for items,
"title": The title of the entry,
"description": The description or agenda of the entry,
"location": The location of the entry, if any,
"start": The start date,
"start_date": The date part of the start,
"start_time": The time part of the start, if any,
"end": The end date if entry, if any,
"end_date": The date part of the end, if any,
"end_time": The time part of the end, if any,
"status": The RSVP status of the user, if any,
"link": The full link to the object
},
... (more entries)
]
Sandbox
Try the operation "/calendar/app/{app_id}/"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