Podio API Documentation

Flows: Get possible attributes

POST /flow/{ref_type}/{ref_id}/attributes/

Get's the possible attributes to use as variables for a given effect attribute.

Parameters
ref_type*
Required.
ref_id*
Required.
Request {
"cause": Details about the cause,
{
"type": The type of the cause,
"config": The configuration of the cause, if any
},
"effect": Details about the effect,
{
"type": The type of the effect,
"config": The configuration of the effect, if any
"attribute_id": The id of the attribute to get possible variables for
}
}
Response [
{
"attribute_id": The id of the attribute,
"type": The type of the attribute,
"label": The label for the attribute,
"required": True if the attribute must have a value supplied,
"nullable": True if the attribute can be set to {{null}}
},
... (more attributes)
]

Sandbox

The sandbox only handles GET operations for now.