get all fields of entities



Hi :)
is there a way to export all fields available for a specific entity without listing all the fields?
also, using the schema API I found 100+ fields called 'fieldXXXX'. is there a mapping between those fields ids and their names so I can understand whats in there?
I saw some cases where I exported person entity and listed all the fields exist in the documentation, but didn't receive the gender field, but when I listed all the 'fieldXXXX' I received the gender in 'field19500'
so how can I make sure I get all the data for each entity?

Submitted by iCIMSUNIFIL on May 09, 2022 Permalink

Please review the documentation on the List API endpoint: https://developer.icims.com/REST-API/Object-Types-Commands/list-api.

Submitted by iCIMSUNIFIL on June 02, 2022 Permalink

I've used 'lists.customfields_lists' and the response is not clear. I get a list that looks like:
[
{
"hidden": false,
"_links": {
"self": {
"href": "https://api.icims.com/customers/3804/v2/lists/lists.customfields_lists/D37002/D37002007?size=50"
}
},
"id": "D37002007",
"listnodeid": "11953",
"value": "rcf3011"
},
{
"hidden": false,
"_links": {
"self": {
"href": "https://api.icims.com/customers/3804/v2/lists/lists.customfields_lists/D37002/D37002008?size=50"
}
},
"id": "D37002008",
"listnodeid": "11960",
"value": "rcf3012"
},....
]
but it's not clear what are the field names (by which I should query in the profile API) and also I can't see the "title" of the field with some clarification of the content of the fields, and to which profile the field is linked to.