Hi All ,
I'm trying to search the all workflow(s) -candidacies based on job id and bin
POST /search/applicantworkflows
{
"filters": [
{
"name": "applicantworkflow.job.id",
"value": ["####"]
},
{
"name": "applicantworkflow.bin",
"value": ["Interview"]
}
],
"operator": "&"
}
When I tried to include the bin it got the bad request. as per documentation , please advice what are the values in bin "Apply" and "Interview".
The ID of the Bin needs to be specified in the payload rather than the name. See the example below:
{
"filters": [{
"name": "applicantworkflow.job.id",
"value": ["1000"]
},
{
"name": "applicantworkflow.bin",
"value": ["D10300"]
}
],
"operator": "&"
}