Offer and candidate API end point
General discussionTeam,
Can you please help me in giving end points of offer and candidate API.
like how to find out the candidate id and offer id.
Thanks
Team,
Can you please help me in giving end points of offer and candidate API.
like how to find out the candidate id and offer id.
Thanks
Hi, I'm trying to extract all offers that have been created after a certain date.
POST Request: https://api.icims.com/customers/[custid]/offer/search
Headers: "Content-Type":"application/json","accept":"application/json"
Body:
{
"page": 1000,
"pageSize": 1000,
"sort": {
"field": "TOffer_FCreatedDate",
"direction": "asc"
},
"filters": {
"field": "TOffer_FCreatedDate",
"operator": "gt",
"value": ["2019-03-20T19:03:58.700Z"]
}
}
I'm getting 500 Internal Server Error
{
"errors": [
I want to be able to search our candidates by their phone number, but so far I wasn't successful.
I tried both person.collectionfieldphonenumbertext & person.customfieldphonenumber.text, also without "field" string in them, but I always get "errorMessage": "The following filter is either not valid or hidden: person.customphones.text"
Is there a way to do search API on candidates by their phone number?
Hi there, is there a way to retrieve Person Screening Questions?
When i try to use the search API to search for people and filter on person.folder i always receive the error "an known error occurred". several other filters using the same search API to find people work just fine.
is there an issue with filtering on person.folder or do i need to adjust my filters somehow so it does not produce the error?
i am using curl to run the command and my filter looks like this:
{"filters": [{"name": "person.folder", "value": ["Cand:Unreviewed"], "operator": "=" }]}
We get this error when importing employee data. Does anyone know how to proactively prevent these errors?
I see there number of references to lists.
But what does it actually refers to?
Is it a features of candidate/job?
Does it refers parameters of a candidate/job?
Does it refers to property of an object [ i.e candidate/job ]?
https://developer.icims.com/REST-API/Object-Types-Commands/list-api
Hi Support, what fields are allowed to be used from the jobs API for a standard integration? Can you direct me to where that is mentioned in the documentation? Thanks.
When I query job details from the endpoint:
https://api.icims.com/customers/{customerId}/jobs/{jobId}
I can include the "jobid" field, which contains a value such as "2016-1409". Is there any way to obtain job details (or search jobs) by using the jobid instead of just the id? I tried using the search endpoint specifying job.jobid as a filter, but that just gives me an error:
"The following filter is either not valid or hidden: job.jobid"
Thanks!
I am looking to get a list of candidates that have an offer in accepted status. I try to run the search but it does not return a list of offers with person id. Any help would be deeply appreciated.