Is ICims down?



Trying to access my integration sandbox and all API requests result in these errors

Sandbox Website - "An unexpected error was encountered while processing your request"
API Request - ""errorMessage": "An unknown error occurred.","

I was wondering if ICims is down or it is specific to my account.

Thanks,
Nathan

Submitted by iCIMSUNIFIL on March 20, 2020 Permalink

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

Submitted by iCIMSUNIFIL on March 25, 2020 Permalink

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 13, 2024, 9:35 AM