Returns a list of all the hiring pipeline stages in the company

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": 100,
        "Name": "Resume Screen"
    },
    {
        "Id":101,
        "Name": "Technial Sreen"
    }
]