Skip to main content
PUT
/
api
/
job-submissions
/
{id}
curl --request PUT \
  --url https://api.harmonyforstaffing.com/api/job-submissions/789 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "statusId": 86,
    "notes": "Moving to interview stage"
  }'
{
  "id": 789,
  "statusId": 86,
  "notes": "Moving to interview stage",
  "updatedAt": "2024-03-19T19:30:00Z"
}
Update the status or details of an existing job submission.

Path Parameters

id
number
required
ID of the job submission to update

Body Parameters

statusId
number
Updated status ID for the submission
notes
string
Additional notes about the status change

Response

id
number
The ID of the updated submission
updatedAt
string
Timestamp of when the submission was last updated
curl --request PUT \
  --url https://api.harmonyforstaffing.com/api/job-submissions/789 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
    "statusId": 86,
    "notes": "Moving to interview stage"
  }'
{
  "id": 789,
  "statusId": 86,
  "notes": "Moving to interview stage",
  "updatedAt": "2024-03-19T19:30:00Z"
}