Podio API Documentation

Recurrence: Create or update recurrence

PUT /recurrence/{ref_type}/{ref_id}

Creates or updates recurrence on the object

Usage
PHP Client
PodioRecurrence.php
PodioRecurrence::create( $ref_type, $ref_id, $attributes = array() );
PodioRecurrence.php
PodioRecurrence::update( $ref_type, $ref_id, $attributes = array() );
Ruby Gem
recurrence.rb
Podio::Recurrence.update( ref_type, ref_id, attributes )
Parameters
ref_type*
Required.
ref_id*
Required.
Request { "name": The name of the recurrence, "weekly", "monthly" or "yearly", "config": The configuration for the recurrence, depends on the type { "days": List of weekdays ("monday", "tuesday", etc) (for "weekly"), "repeat_on": When to repeat, "day_of_week" or "day_of_month" (for "monthly") }, "step": The step size, 1 or more, "until": The latest date the recurrence should take place }

Sandbox

The sandbox only handles GET operations for now.