- Introduction
- Staff API Overview
- Leads API Overview
- Call Logs API Overview
- Tickets API Overview
- Deals Management API Overview
- List DealsGET
- Create a DealPOST
- Update a DealPUT
- Get a Deal DetailsGET
- List Deals SourcesGET
- List Deals PipelineGET
- Add a Deal CommentPOST
- Update a Deal CommentPUT
- Add an AttachmentPOST
- Delete an AttachmentDELETE
- List a Deal ServicesGET
- Get a Deal Service DetailGET
- Add a Deal ServicePOST
- Update a Deal ServicePUT
List Deals Pipeline
GET
/deals/pipeline
Request
None
Responses
🟢200Success
application/json
Body
data
array [object {4}]Â
required
pipeline_id
stringÂ
required
pipeline_name
stringÂ
required
description
nullÂ
required
order
stringÂ
required
Example
{
"data": [
{
"pipeline_id": "1",
"pipeline_name": "Sales",
"description": null,
"order": "0"
},
{
"pipeline_id": "2",
"pipeline_name": "Interview",
"description": null,
"order": "0"
},
{
"pipeline_id": "3",
"pipeline_name": "Store",
"description": null,
"order": "0"
}
]
}
🟠401Unauthorized
Modified at 2024-09-05 09:40:06