Skip to main content
PATCH
/
jobs
/
{jobId}
Update
curl --request PATCH \
  --url https://api.mapademics.com/v1/jobs/{jobId} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "employerId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "jobDescriptionHref": "<string>",
  "locations": [
    {
      "type": "location",
      "locationId": "new-york-ny"
    }
  ],
  "salaryMin": 123,
  "salaryMax": 123,
  "onetSocCode": "<string>"
}'
{
  "id": "<string>",
  "organizationId": "<string>",
  "employerId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "jobDescriptionHref": "<string>",
  "locations": [
    {
      "type": "location",
      "locationId": "new-york-ny"
    }
  ],
  "salaryMin": 123,
  "salaryMax": 123,
  "onetSocCode": "<string>",
  "skills": [
    {
      "skillId": "<string>",
      "skillName": "<string>",
      "level": 3,
      "confidence": 0.5
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "deletedAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

jobId
string
required

Unique identifier for the job

Body

application/json
employerId
string | null
name
string
description
string | null
jobDescriptionHref
string<uri> | null
locations
object[]
salaryMin
integer | null
salaryMax
integer | null
onetSocCode
string | null

Response

Job updated successfully

id
string
required
organizationId
string
required
name
string
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
employerId
string | null
description
string | null
jobDescriptionHref
string<uri> | null
locations
object[]
salaryMin
integer | null
salaryMax
integer | null
onetSocCode
string | null
skills
object[]

Extracted skills from job description

deletedAt
string<date-time> | null