Skip to main content
Get Talent Stages
GET
GET
https://api.atzcrm.com/v1/talent-funnel/stages

Retrieve all talent stages for a given funnel.

Request

Query Parameter

  • funnel_idinteger

    ID 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.

  • idnumber

    Unique ID of the talent stage.

  • namestring

    Display 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" }
]