Skip to main content
POST
/
api
/
job-submissions
curl --request POST \
  --url https://api.harmonyforstaffing.com/api/job-submissions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "jobId": 123,
    "candidateId": 456,
    "statusId": 85
  }'
{
  "id": 789,
  "jobId": 123,
  "candidateId": 456,
  "statusId": 85,
  "createdAt": "2024-03-19T18:30:00Z"
}
Create a new job submission to apply a candidate for a specific job.

Body Parameters

jobId
number
required
ID of the job being applied for
candidateId
number
required
ID of the candidate applying
statusId
number
required
Initial status ID for the submission

Response

id
number
The unique identifier for the created job submission
createdAt
string
Timestamp of when the submission was created
curl --request POST \
  --url https://api.harmonyforstaffing.com/api/job-submissions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "jobId": 123,
    "candidateId": 456,
    "statusId": 85
  }'
{
  "id": 789,
  "jobId": 123,
  "candidateId": 456,
  "statusId": 85,
  "createdAt": "2024-03-19T18:30:00Z"
}