Skip to content

API Reference / Pipelines

GET /pipelines/{pipeline_id}

Get a specific pipeline

Returns one pipeline with its ordered stages. Each stage has a numeric stage position and a label; a pipeline holds between one and nine stages. default reflects whether it is your own default pipeline.

Maintained by the OnePageCRM engineering team

Path parameters

Name Type Description
pipeline_id req string Pipeline ID

Responses

200 OK
  • statusintegerint32

    Response code

  • messagestring

    Response message

  • timestampintegerunix-timestamp

    Response time

  • dataobject
    object fields β†’
    • pipelineobject

      Information about the sales process of products or services, including deal stages.

      object fields β†’
      • idstringbson-id

        ID of the pipeline

      • namestring

        Name of the pipeline

      • typestring

        Type of the pipeline (sales or delivery)

      • defaultboolean

        Is this pipeline the default pipeline in the account?

      • won_column_enabledboolean

        Specifies if the `WON` column is enabled for the pipeline

      • won_column_namestring

        Name of the `WON` column for the pipeline

      • stagesarray<object>

        Deal stages defined for the pipeline

        array item fields β†’
        • stageintegerint32

          Integer in the range 0 to 100 (exclusive) indicating how close a deal is to being closed

        • labelstring

          Text description for the deal stage of the deal

Standard error responses: 400 Β· 401 Β· 403 Β· 404 Β· 409 Β· 500 β€” shared across the API. See Errors.

Related guides