Vacancy listing

POST /vacancy/list

This API is to listing vacancy based on given filter. This is an authendicated API so we need to pass bearer token in request header to access the data.

Headers

application/json

Body

POST /vacancy/list
curl \
 -X POST https://api-console.logezy.co/v1/vacancy/list \
 -H "Accept: string" \
 -H "Content-Type: string" \
 -d '{"from":"2019-08-24","to":"2019-08-24","business_units":[0],"clients":[0],"jobs":[0],"regions":[0],"status":"applied","per_page":1}'
Request example
# Headers
Accept: string
Content-Type: string

# Payload
{
  "from": "2019-08-24",
  "to": "2019-08-24",
  "business_units": [
    0
  ],
  "clients": [
    0
  ],
  "jobs": [
    0
  ],
  "regions": [
    0
  ],
  "status": "applied",
  "per_page": 1
}