Podio API Documentation
Applications: Update an app field
Updates the configuration of an app field. The type of the field cannot be updated, only the configuration.
Usage
- PHP Client
-
PodioAppField.php
PodioAppField::update( $app_id, $field_id, $attributes = array() );
Parameters
- app_id*
- Required.
- field_id*
- Required.
Request
{
"label": The label of the field, which is what the users will see,
"description": The description of the field, shown to the user when inserting and editing,
"delta": An integer indicating the order of the field compared to other fields,
"settings": The settings of the field which depends on the type of the field (see area for more information),
"mapping": The mapping of the field, one of "meeting_time", "meeting_participants", "meeting_agenda" and "meeting_location",
"required": True if the field is required when creating and editing items, false otherwise,
"hidden_create_view_edit": True if hidden in create/view/edit mode, False by default
}