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>"
}
]
}
]
}
'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>"
}
]
}
]
}
'Was this page helpful?