Submitted by
iCIMSUNIFIL on March 20, 2020
Permalink
Submitted by
iCIMSUNIFIL on March 25, 2020
Permalink
ICims was down
It seems ICims was just down for a short while for an update on Thursday, all my requests work fine now. I'm unsure what your message is in response to but thanks anyway.
(edited)
Last Updated: December 16, 2024, 5:58 PM
In your GET request you are querying for applicantworkflows. The search criteria needs to be defined as the structure is incorrect for the query you are attempting. A POST call is most common. You can also encode the search criteria in your GET request URL. Below is an example of search criteria that shows any applicant workflows updated up to today, as well as a link to the Search API page of the Developer's site, which has further examples:
{
"filters": [{
"name": "applicantworkflow.updateddate",
"secondaryValue": ["{DATE:END}"],
"value": [],
"operator": "="
}],
"operator": "&"
}
https://developer.icims.com/REST-API/Object-Types-Commands/Search-API