Job

On this Work Structure Job page you can use the method :

1. GET
  • Get List of Jobs based on active parameter

Objective : To get a list of jobs based on the active parameter

Method : GET
API Endpoint : [[baseurl]]/api/integration/v1/jobs?active=[[value]]

๐Ÿ“Notes Parameter [[value]] filled with “true” if the job data is active or “false” if the job data is inactive.

HEADER

X-TenantID: [[tenantid]]
Authorization: Bearer [[accesstoken]]
CONSUME VIA CURL

curl --location --request GET '[[baseurl]]/api/integration/v1/jobs?active=[[value]]' 
--header 'X-TenantID: [[tenantid]]' 
--header 'Authorization: Bearer [[accesstoken]]'

๐Ÿ“Notes To find out [[baseurl]], And [[tenantid]], You can learn about it on the page Integration Credential. And for [[accesstoken]] can be studied on the page Authorization Token.

API Response :

[
  {
    "id": "56cd5d50-929a-11eb-97ce-0adbcc9eaaa8",
    "name": "Analyst/Jr. Consultant - Business Consultant & a",
    "jobFamiliesId": "55792d2d-929a-11eb-97ce-0adbcc9eaaa8",
    "jobFamiliesName": "Business Consultant",
    "level": 0,
    "active": true
  },
  {
    "id": "56cd5373-929a-11eb-97ce-0adbcc9eaaa8",
    "name": "Analyst/Jr. Consultant - Professional Services",
    "jobFamiliesId": "55792c07-929a-11eb-97ce-0adbcc9eaaa8",
    "jobFamiliesName": "Professional Services",
    "level": null,
    "active": true
  }
]