Returns a list of all the stages associated with a vacancy

In order to access this endpoint ensure that you do a GET request with an Authorization header containing your access token.

Headers:
Authorization : {token}

Result codes

403 Forbidden
200 OK
400 Bad request
500 Internal server error

Result

All the stages associated with the Vacancy-Id will be returned and will have the following fields:

Field NameTypeDescription
IdintUnique identifier for the vacancy stage
NamestringName of the vacancy stage

Response Format

[
    {
        "Id": 1,
        "Name": "Sourced"
    },
    {
        "Id": 2,
        "Name": "Shortlist"
    },
    {
        "Id": 5,
        "Name": "Offer"
    },
    {
        "Id": 6,
        "Name": "Disqualified"
    },
    {
        "Id": 7,
        "Name": "Hired"
    },
    {
        "Id": 8,
        "Name": "Pending Approval"
    },
    {
        "Id": 9,
        "Name": "Onboarding Rejected"
    },
    {
        "Id": 12,
        "Name": "Applied"
    },
    {
        "Id": 99,
        "Name": "Custom Stage Name"
    }
]