Industries
Get Industries
Returns records of vacancy industries created by client
GET /vacancies/industries
Headers
Client-Key*
String
Your client Key
{
"data": [
{
"id": 1,
"name": "Public",
"slug": "public"
}
]
}Create Industry
Create a vacancy industry and return its value
POST /vacancies/industries
Headers
Client-Key*
String
Your client Key
Authorization*
String
Bearer access_token
Request Body
name*
String
The name of the industry
slug
String
The slug of the industry
Get Industry Detail
Returns vacancy industry by id
GET /vacancies/industries/{id}
Path Parameters
id*
Integer
The id of the industry
Headers
Client-Key*
String
Your client Key
Update Industry
Update vacancy industry by id and return its value
PUT /vacancies/industries/{id}
Path Parameters
id*
Integer
The id of the industry
Headers
Client-Key*
String
Your client Key
Authorization*
String
Bearer access_token
Request Body
name*
String
The name of the industry
slug
String
The slug of the industry
Delete Industry
Delete vacancy industry by id
DELETE /vacancies/industries/{id}
Path Parameters
id*
Integer
The id of the industry
Headers
Client-Key*
String
Your client Key
Authorization*
String
Bearer access_token
Example Request
Last updated