Skip to main content
POST
/
api
/
career
/
jobs
/
confirm
Confirm Job
curl --request POST \
  --url https://api.example.com/api/career/jobs/confirm \
  --header 'Content-Type: application/json' \
  --data '
{
  "company": "<string>",
  "id": "<string>",
  "role_title": "<string>",
  "source_url": "<string>",
  "description_excerpt": "<string>",
  "employment_type": "<string>",
  "location": "<string>",
  "normalized_skills": [
    "<string>"
  ],
  "posted_at": "<string>",
  "project_domain": "<string>",
  "raw_skills": [
    "<string>"
  ],
  "seniority": "<string>"
}
'
{
  "job_id": "<string>",
  "message": "<string>",
  "success": true
}

Body

application/json

User-confirmed (possibly edited) job data to save to corpus.

company
string
required
Minimum string length: 1
id
string
required
Minimum string length: 1
role_title
string
required
Minimum string length: 1
source_url
string<uri>
required
Required string length: 1 - 2083
description_excerpt
string | null
employment_type
string | null
location
string | null
normalized_skills
string[]
posted_at
string | null
project_domain
string | null
raw_skills
string[]
seniority
string | null

Response

Successful Response

Result after saving a job to the corpus.

job_id
string
required
message
string
required
success
boolean
required