Get Talent Stages
GET
GET
https://api.atzcrm.com/v1/talent-funnel/stagesRetrieve all talent stages for a given funnel.
Request
Query Parameter
- funnel_id
integerID of the talent funnel to fetch stages for (required). Example: 0
Headers
- Authorization: Bearer your_access_token
Response
200
Body
Returns an array of talent stage objects.
- id
numberUnique ID of the talent stage.
- name
stringDisplay name of the talent stage. Example: Assigned
401
Body
- Unauthorized
Response Example
[
{ "id": 1, "name": "New Applicant" },
{ "id": 2, "name": "Screening" },
{ "id": 3, "name": "Interview" },
{ "id": 4, "name": "Offer Sent" },
{ "id": 5, "name": "Hired" },
{ "id": 6, "name": "Rejected" }
]