OAuth JWT Not WOrking

General discussion

I'm making a POST request, in Postman, to https://login.icims.com/oauth/token with the following body:

audience:https://api.icims.com/v1/
grant_type:client_credentials
client_id:kfitzgerald
client_secret:

- "client_id" and "client_secret" are my username + password used to login to developer.icims.com

I simply receive a 401 everytime:
{
"error": "access_denied",
"error_description": "Unauthorized"
}

Error Using jobtemplateid For Single Job Template Only

General discussion

This question is related to creating jobs via the API. More specifically, creating jobs via the API using the *"jobtemplateid" field. We are seeing an error when attempting to create a job from only one particular job template. We are including the details of the API call below.

Interestingly, we can make the exact same API call in the customer's test environment (test environment is populated with data copied from production) using the same system ID in the jobtemplateid field and the call is successful.

Using Field Type Dropdown (Multi-Select Searchable List)

General discussion

I see the "Dropdown (Multi-Select Searchable List)" field type is not included in the list of supported field types on this page: https://developer.icims.com/REST-API/Object-Types-Commands/Field-Types

That said, we have successfully made GET calls to retrieve data from the Dropdown (Multi-Select Searchable List) field type. A sample response is below for the GET with obfuscated ID's & values.

Offer API - trying to get offers that have been created/updated after a given date

General discussion

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"]
}
}