Contains API calls that can be used against the Vacancy Status.
1.Get Vacancy Statuses
Returns a list of all vacancy statuses in the ATS system.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
Response
The response for this call will not change often.At the moment there are only 8 vacancy statuses in the system.
[
{
"Id":1,
"Name":"Draft"
},
{
"Id":2,
"Name":"Published"
},
{
"Id":3,
"Name":"Closed"
},
{
"Id":4,
"Name":"Archived"
},
{
"Id":5,
"Name":"Pending Approval"
},
{
"Id":6,
"Name":"Rejected Approval"
},
{
"Id":7,
"Name":"Accepted Approval"
},
{
"Id":8,
"Name":"Published Internal"
}
]