Search Workflow based on Bin and Job ID



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".

applicantworkflow.bin
applicantworkflow.status
applicantworkflow.updateddate

Get all the workflow based on job id and list of bin.

Submitted by iCIMSUNIFIL on April 02, 2020 Permalink

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": "&"
}

(edited) Last Updated: December 12, 2024, 6:31 PM