Get all candidate submission status
Posted: Thu Jan 09, 2020 7:02 am
Hello everyone,
I was wondering if it was possible to obtain all candidates with a specific status for example : "Shortlisted" in the job submission
I have tried many times but it doesnt seem to work.
If you have any idea ? it would be much appreciated.
Thank you very much
Best
evis
I was wondering if it was possible to obtain all candidates with a specific status for example : "Shortlisted" in the job submission
Code: Select all
https://clsXX.bullhornstaffing.com/core/search/JobSubmission?query=jobOrder.id:XXXXXXX &status:'Shortlisted'&fields=candidate,status&BhRestToken={{BhRestToken}}
If you have any idea ? it would be much appreciated.
Thank you very much
Best
evis
Code: Select all
"fields": [
{
"sortOrder": 40,
"hint": "",
"label": "Status",
"type": "SCALAR",
"systemRequired": false,
"dataType": "String",
"hideFromSearch": false,
"readOnly": false,
"maxLength": 30,
"description": "",
"name": "status",
"optional": false,
"inputType": "SELECT",
"multiValue": false,
"required": true,
"confidential": false,
"options": [
{
"value": "Shortlisted",
"label": "Shortlisted"
},
{
"value": "Client Rejected",
"label": "Client Rejected"
},
{
"value": "Candidate Rejected",
"label": "Candidate Rejected"
},
{
"value": "Sales Rejected",
"label": "Sales Rejected"
},
{
"value": "Compliance Checked",
"label": "Compliance Checked"
},
{
"value": "Offer Accepted",
"label": "Offer Accepted"
},
{
"value": "Offer Extended",
"label": "Offer Extended"
},
{
"value": "Offer Rejected",
"label": "Offer Rejected"
}
]
}
]