Create Job Application (v1)
The endpoint will allow you to create a job applications
Resource Path
| Property | Value |
|---|---|
| url | jobApplication |
Input Data
| Field | Description |
|---|---|
| candidateId | String : The unique Id of the candidate |
| jobId | String : The unique Id of the job (null if spontaneous applications) |
| referer | String : source of the candidate |
Response
| Field | Description |
|---|---|
| candidateId | String : The unique Id of the candidate |
| jobId | String : The unique Id of the job (null if spontaneous applications) |
| referer | String : source of the candidate |
Error Code
| Code | Description |
|---|---|
| 409 | This candidate already apply for this job |
curl -X POST \ 'https://public-api.nextal.com/jobApplications?napikey=demo&ntenant=demo' \ -H 'accept: application/json, text/plain, */*' \ -H 'cache-control: no-cache' \ -H 'content-type: application/json;charset=UTF-8' \ -d '{ "candidateId":"5c73df6a2c17ca0b49e6650b", "jobId":"5c875c8b2c17ca56a9806c9f"}'