Get Pipeline Item Schema
get_pipeline_item_schemaRetrieve a pipeline's complete field schema, including custom fields and valid options, to correctly create or edit pipeline items.
Instructions
Get complete field schema for creating/editing pipeline items.
Requires pipeline_id because each pipeline has different custom fields.
Returns ALL fields (both fixed system fields and custom fields) with:
name: The parameter name to use in create_pipeline_item/edit_pipeline_item
required: Whether this field must be provided
type: Field type (Text, Dropdown, etc.)
input_format: Exact format expected for the value
valid_options: For dropdowns, the exact values you can use
is_custom_field: Whether this is a custom field (true) or built-in (false)
WORKFLOW:
Call get_pipelines to find the pipeline_id and its status_ids
Call get_pipeline_item_schema with the pipeline_id
Use the schema to construct a valid create_pipeline_item call
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pipeline_id | Yes | The PipelineId to get the schema for |