Podio API Documentation

Tasks: Create task with reference

POST /task/{ref_type}/{ref_id}/

Creates a new task with a reference to the given object. The valid types of objects are "item", "status", "app", "space" and "conversation".

Usage
PHP Client
PodioTask.php
PodioTask::create_for( $ref_type, $ref_id, $attributes = array(), $options = array() );
Ruby Gem
task.rb
Podio::Task.create_with_ref( ref_type, ref_id, attributes, options = {} )
Parameters
ref_type*
Required.
ref_id*
Required.
hook

True if hooks should be executed for the change, false otherwise.


Default value: true
silent

If set to true, the object will not be bumped up in the stream and notifications will not be generated.


Default value: false
Request See the "create task" operation
Response { "task_id": The id of the newly created task, ... (more properties, see the get task operation) }

 

Sandbox

The sandbox only handles GET operations for now.