Skip to main content
PUT
/
api
/
Candidates
/
jobs
/
{jobId}
/
updateRating
cURL
curl --request PUT \
  --url https://api.example.com/api/Candidates/jobs/{jobId}/updateRating \
  --header 'Content-Type: application/json' \
  --data '
{
  "candidateIds": [
    123
  ],
  "ratingId": 123,
  "reason": "<string>"
}
'

Path Parameters

jobId
integer<int32>
required

Body

application/json
candidateIds
integer<int32>[] | null
ratingId
integer<int32>
reason
string | null

Response

200

OK