GET /v1/crm/analytics/pipeline
GET
/v1/crm/analytics/pipelineAuthorization
bearerAuthbearerAuthrequiredor
apiKeyAuthapiKeyAuthrequiredResponses
200OK
itemsPipelineStage[] | nullrequiredShow propertiesHide properties
Array of
PipelineStagedeal_countinteger<int64>requiredstage_idstringrequiredstage_namestringrequiredstage_orderinteger<int32>requiredtotal_valueinteger<int64>requireddefaultError
errorErrorBodyrequiredShow propertiesHide properties
codestringrequireddetailsErrorDetail[] | nullShow propertiesHide properties
Array of
ErrorDetailcodestringfieldstringlocationstringmessagestringrequiredmessagestringrequiredrequest_idstringRequest
curl -X GET "/v1/crm/analytics/pipeline"const response = await fetch("/v1/crm/analytics/pipeline", {
method: "GET"
});import requests
response = requests.get(
"/v1/crm/analytics/pipeline",
)Response
{
"items": [
{
"deal_count": 0,
"stage_id": "string",
"stage_name": "string",
"stage_order": 0,
"total_value": 0
}
]
}{
"error": {
"code": "string",
"details": [
{
"code": "string",
"field": "string",
"location": "string",
"message": "string"
}
],
"message": "string",
"request_id": "string"
}
}