メインコンテンツへスキップ
GET
/
crm
/
pipelines
/
2026-03
/
{objectType}
/
{pipelineId}
Return a pipeline by ID
curl --request GET \
  --url https://api.hubapi.com/crm/pipelines/2026-03/{objectType}/{pipelineId} \
  --header 'Authorization: Bearer <token>'
{
  "archived": true,
  "createdAt": "2023-11-07T05:31:56Z",
  "displayOrder": 123,
  "id": "<string>",
  "label": "<string>",
  "stages": [
    {
      "archived": true,
      "createdAt": "2023-11-07T05:31:56Z",
      "displayOrder": 123,
      "id": "<string>",
      "label": "<string>",
      "metadata": {},
      "updatedAt": "2023-11-07T05:31:56Z",
      "archivedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "updatedAt": "2023-11-07T05:31:56Z",
  "archivedAt": "2023-11-07T05:31:56Z"
}

Supported products

承認

Authorization
string
header
必須

The access token received from the authorization server in the OAuth 2.0 flow.

パスパラメータ

objectType
string
必須
pipelineId
string
必須

レスポンス

successful operation

archived
boolean
必須

Whether the pipeline is archived.

createdAt
string<date-time>
必須

The date the pipeline was created. The default pipelines will have createdAt = 0.

displayOrder
integer<int32>
必須

The order for displaying this pipeline. If two pipelines have a matching displayOrder, they will be sorted alphabetically by label.

id
string
必須

A unique identifier generated by HubSpot that can be used to retrieve and update the pipeline.

label
string
必須

A unique label used to organize pipelines in HubSpot's UI

stages
object[]
必須

The stages associated with the pipeline. They can be retrieved and updated via the pipeline stages endpoints.

updatedAt
string<date-time>
必須

The date the pipeline was last updated.

archivedAt
string<date-time>

The date the pipeline was archived. archivedAt will only be present if the pipeline is archived.

最終更新日 2026年6月5日