curl --request GET \
--url https://api.hubapi.com/crm-pipelines/v1/pipelines/{object_type}{
"results": [
{
"pipelineId": "<string>",
"createdAt": 123,
"updatedAt": 123,
"objectType": "DEAL",
"label": "<string>",
"displayOrder": 123,
"active": true,
"default": true,
"stages": [
{
"stageId": "<string>",
"createdAt": 123,
"updatedAt": 123,
"label": "<string>",
"displayOrder": 123,
"active": true,
"metadata": {
"probability": 0.5
}
}
]
}
]
}This endpoint is used to get all pipelines for either deals or tickets. (These are currently the only supported object types for this endpoint.) Use case for this endpoint: It can be used to sync all of a particular company’s deal pipelines to an external system. Note: This endpoint requires either the contacts scope (to fetch deals pipelines) or the tickets scope.
curl --request GET \
--url https://api.hubapi.com/crm-pipelines/v1/pipelines/{object_type}{
"results": [
{
"pipelineId": "<string>",
"createdAt": 123,
"updatedAt": 123,
"objectType": "DEAL",
"label": "<string>",
"displayOrder": 123,
"active": true,
"default": true,
"stages": [
{
"stageId": "<string>",
"createdAt": 123,
"updatedAt": 123,
"label": "<string>",
"displayOrder": 123,
"active": true,
"metadata": {
"probability": 0.5
}
}
]
}
]
}The object type that you want the pipelines for. Must be one of: deals, tickets
deals, tickets Whether or not to include inactive pipelines. Inactive pipelines and stages cannot be used when creating or updating objects.
EXCLUDE_DELETED, INCLUDE_DELETED Successful response with pipelines for the specified object type
Show child attributes
Was this page helpful?