Skip to main content
Get Deal-Stages
GET
GET
http://api.atzcrm.com/v1/deal-pipeline

Retrieve the details of all deal-stages.

Request

GET

GET /v1/deal-pipeline

Headers

  • Authorization: Bearer your_access_token

Response

200

Body

  • idinteger

    Example: 1

  • labelstring

    Example: To Do

  • percentagestring

    Example: "100"

401

Body

  • unauthorised

Response Example

[
{
"id": 1,
"label": "Won",
"percentage": "100"
},
{
"id": 2,
"label": "Lost",
"percentage": "0"
},
{
"id": 3,
"label": "test ",
"percentage": "20"
},
{
"id": 4,
"label": "test 2",
"percentage": "45"
},
{
"id": 5,
"label": "check ",
"percentage": "12"
}
]