Skip to main content
POST
/
api
/
Candidates
/
Screen
Perform Screening.
curl --request POST \
  --url https://api.example.com/api/Candidates/Screen \
  --header 'Content-Type: application/json' \
  --data '
{
  "candidateID": 123,
  "jobID": 123,
  "activityID": 123,
  "fields": [
    {
      "order": 123,
      "name": "<string>",
      "type": "<string>",
      "mandatory": true,
      "value": "<string>",
      "templateId": 123,
      "options": [
        {
          "Text": "<string>",
          "value": "<string>"
        }
      ]
    }
  ]
}
'

Body

application/json
candidateID
integer<int32>
jobID
integer<int32>
activityID
integer<int32>
fields
object[] | null

Response

200

OK