Industries

Get Industries

Returns records of vacancy industries created by client

GET /vacancies/industries

Headers

Name
Type
Description

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

Name
Type
Description

Client-Key*

String

Your client Key

Authorization*

String

Bearer access_token

Request Body

Name
Type
Description

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

Name
Type
Description

id*

Integer

The id of the industry

Headers

Name
Type
Description

Client-Key*

String

Your client Key

Update Industry

Update vacancy industry by id and return its value

PUT /vacancies/industries/{id}

Path Parameters

Name
Type
Description

id*

Integer

The id of the industry

Headers

Name
Type
Description

Client-Key*

String

Your client Key

Authorization*

String

Bearer access_token

Request Body

Name
Type
Description

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

Name
Type
Description

id*

Integer

The id of the industry

Headers

Name
Type
Description

Client-Key*

String

Your client Key

Authorization*

String

Bearer access_token

Example Request

Last updated