Returns a list of custom vacancy job grades
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
One or more job grade objects will be returned and will have the following fields:
Field Name | Type | Description |
---|---|---|
Id | int | Unique identifier for the job grade |
Name | string | Name of the job grade |
DisplayOrder | int | Symbolizes an order in which the job grades should be displayed when presented to the client |
Deleted | datetime | The date and time when the job grade was marked as deleted.Will only contain a value if the job grade was deleted, otherwise this will be null |
Response Format
[
{
"Id": 1,
"Name": "Grade A",
"DisplayOrder": 0,
"Deleted": null
},
{
"Id": 2,
"Name": "Grade B",
"DisplayOrder": 1,
"Deleted": null
},
{
"Id": 3,
"Name": "Grade C",
"DisplayOrder": 2,
"Deleted": null
}
]