Submittal/Rejection Note Subject
General discussionIs there a way to access the Submittal/Rejection Note Subject via the API? We can see it when viewing the People tab of a Requisition and would like to access that field through an API call. We are currently able to get the other data from that tab via calls to the applicantworkflows endpoint.
Thank you for your help!
- Read more about Submittal/Rejection Note Subject
- 5 comments
- Log in to post comments
Visual design in ICIMS (see footlocker)
General discussionHi, all. See the footlocker integration here: https://bit.ly/3FQHOT0
We at MFA Oil are interested in more robustly designing our ICIMS interface like footlocker did across the top, to strengthen our brand. Can I get more information as to how to set up just that visual aspect of the page?
- Read more about Visual design in ICIMS (see footlocker)
- 1 comment
- Log in to post comments
get all of the fields of form data
General discussionHi,
I need to get all of the forms related to a person and export the form data.
I'm using the search API and getting the ids of the relevant form data.
I see in the documentation that in order to get all of the question's answers there are 2 options:
1 - use the URL with the form name
2 - list the names of the requested question in the params.
since I can't get either of those values from the search API, I'll have to request the form data twice, once for getting the basic metadata of the form(to get the form name) and then once again to get all of the fields.
- Read more about get all of the fields of form data
- 1 comment
- Log in to post comments
multiple person id in payload not working for search api
General discussionhttps://api.icims.com/customers/{{customerID}}/search/applicantworkflows?staleness=0
{
"filters": [
{
"name": "applicantworkflow.person.id",
"value": [
"147", "23"
],
"operator": "="
}
],
"operator": "&"
}
Basically i want to retrieve applicantworkflows for specific persons:
Person - Attachments API
General discussionIs there an API to download/upload attachments related to a person record?
- Read more about Person - Attachments API
- 9 comments
- Log in to post comments
Custom and standard fields are not returned in API response
General discussionI am accessing the below API with filters.
https://api.icims.com/customers/{customerId}/people/{peopleid}?fields=externalid,firstname,middlename,lastname,PreferredName,addresses,phones,email,gender,birthdate,race,startdate,usssn,rcf4003,job,rcf4003,rcf2006,drivinglicensenumber,drivinglicensestate
I am not getting the customfields in the response even though they are getting displayed in UI.
Sample Response:
"birthdate": "Information Complete",
"gender": "Information Complete",
"race": "Information Complete"
Embedded images in resume are blurry
General discussionWe are uploading PDF resumes to some person profiles using the endpoint = https://api.icims.com/customers/{customerId}/{profileType}/{profileId}/fields/{fieldId}/binary.
Everything is seeming to work correctly other than the image/logo embedded in the PDF file is blurry when viewing the file on the person's profile page. The text is clear. Additionally, when the resume is downloaded via the Resume Log interface, the image on the downloaded resume is clear.
- Read more about Embedded images in resume are blurry
- 1 comment
- Log in to post comments
Recent Site Updates
General discussionHello,
I have noticed the recent site updates on page 1 all link to a user request form - https://developer.icims.com/recent-updates. I like to see the updates to determine if there would be anything to take into account for future integrations.
Jon
- Read more about Recent Site Updates
- 1 comment
- Log in to post comments
Permission to create requisition
General discussionWhat permissions are needed to be assigned to enable a new user to create requisition in ICIMS
- Read more about Permission to create requisition
- 1 comment
- Log in to post comments
Having trouble making get requests to the search api
General discussionI am currently trying to query an endpoint using the search api and am not having any luck.
Here is the call I am attempting to run. I am running it as a Get in postman:
https://api.icims.com/customers/xxxxx/search/applicantworkflows?searchJson={"filters": [{"name": "applicantworkflow.person.firstname","value": ["Gabriel"]},{"name": "applicantworkflow.person.lastname","value": ["Soba"]}],"operator": "%26"}