Skip to main content
Get contact-stages
GET
GET
http://api.atzcrm.com/v1/contact-stage

Retrieve the details of all contact-stages.

Request

GET

GET /v1/contact-stage

Headers

  • Authorization: Bearer your_access_token

Response

200

Body

  • stage_idinteger

    Example: 1

  • labelstring

    Example: To Do

401

Body

  • unauthorised

Response Example

{
"message": "Contact stages fetched successfully",
"data": [
{
"stage_id": 1,
"label": "Prospect"
},
{
"stage_id": 2,
"label": "Client"
},
{
"stage_id": 3,
"label": "Test"
},
{
"stage_id": 4,
"label": "Test 2"
}
]
}