Industries

Get Industries

Returns records of vacancy industries created by client

GET /dashboard/vacancies/industries

Query Parameters

Name
Type
Description

q

String

Limit industries based on string

order

String

Ordering data industries based on created_at, options: DESC or ASC Default: DESC

per_page

Integer

Limit data industries per page

page

Integer

Limit data industries based on page

show_all

Boolean

Set false if want to use pagination

Headers

Name
Type
Description

Client-Key*

String

Your client Key

Authorization*

String

Admin bearer token

{
    "data": [
        {
            "id": 63,
            "name": "E-commerce",
            "slug": "demo-e-commerce"
        }
    ],
    "meta": {
        "pagination": {
            "total": 1,
            "count": 1,
            "per_page": 10,
            "current_page": 1,
            "total_pages": 1,
            "links": {}
        }
    }
}

Create Industry

Create a vacancy industry and return its value

POST /dashboard/vacancies/industries

Headers

Name
Type
Description

Client-Key*

String

Your client Key

Authorization*

String

Admin bearer token

Request Body

Name
Type
Description

name*

String

The name of the industry

Get Industry Detail

Returns vacancy industry by id

GET /dashboard/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

Admin bearer token

Update Industry

Update vacancy industry by id and return its value

PUT /dashboard/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

Admin bearer token

Request Body

Name
Type
Description

name*

String

The name of the industry

Delete Industry

Delete vacancy industry by id

DELETE /dashboard/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

Admin bearer token

Example Request

Last updated