# Create Pipeline Creates a new pipeline in the system to create pipeline stages for, unlocking the ability to track a deal's progress through the sale cycle. Endpoint: POST /v1/pipelines Version: v1 Security: ApiKey ## Request fields (application/json-patch+json): - `name` (string, required) The name of the Pipeline, typically reflecting the sales funnel or opportunity workflow. - `is_enabled` (boolean) Indicates whether syncs for this Pipeline are enabled; differs from IsArchived. ## Response 201 fields (application/json): - `id` (string) The unique identifier of the Pipeline in Parallax. - `name` (string) The name of the Pipeline, typically reflecting the sales funnel or opportunity workflow. - `currency_code` (string) The ISO currency code associated with the Pipeline, used for financial values tied to deals. - `is_enabled` (boolean) Indicates whether syncs for this Pipeline are enabled; differs from IsArchived. - `archived` (boolean) Indicates whether the Pipeline is archived and no longer active in Parallax. ## Response 400 fields (application/json): - `type` (string) RFC reference for the error type - `title` (string) Human-readable summary of the error - `status` (integer) HTTP status code - `errors` (array) Detailed error messages for each validation failure - `trace_id` (string) Trace identifier for debugging