About this endpoint
What it does
Submits an asynchronous job to generate related skills based on a provided job position or role. The request sends the role details and returns a JSON object with the submitted job’s identifier and a status URL for polling the result.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide a job position/role to generate related job positions for. |
| language | String | No | Specify the language of the output. Default: English. |
| max_quantity | Number | No | Maximum number of related job positions to generate. Minimum: 1. |
Response
Returns a JSON object with two string fields: job_id and status_url. job_id is the unique identifier of the submitted job, and status_url is the URI used to poll for the job’s status and result.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | No | The unique identifier of the submitted job. Format: UUID. |
| status_url | String | No | URL to poll for the job's status and result. Format: URI. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job_check endpoint — poll that until the status reaches a terminal state to retrieve the result. Extract the job identifier from job_id.