Get contact-stages
GET
GET
http://api.atzcrm.com/v1/contact-stageRetrieve the details of all contact-stages.
Request
GET
GET /v1/contact-stage
Headers
- Authorization: Bearer your_access_token
Response
200
Body
- stage_id
integer
Example: 1
- label
string
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"
}
]
}