Hi @ghoeugenio ,
There are different lists that are fetched by an entity type, for example the ‘Custom Column’, if you want to get all available lists in the Service Request form you will have to send the following api call: /list?entity=sr.
The Relational Lists must have a GET format like: GET/relational_list/{id}?entity={entity}&offset={offset}&limit={limit}&id={idField}
Becasue Relational lists are a special custom column type that represents a list of items from a referenced entity they support displaying data from the following entities: Assets, Companies, CI, Groups, Software Products and Users.
The field entity is optional. The Default is sr and the supported entities are: “sr”, “ci” and “action_item”
This is a sample JSON file that returns values for relational_list/CustomColumn188srSubTab?entity=action_item
{ "id": "CustomColumn188srSubTab", "caption": "rellist", "values": e {"id": "10004517", "caption": "John Doe"}, {"id": "10000010", "caption": "a@b.com"}, {"id": "10003446", "caption": "Federico Williams"}, {"id": "10004350", "caption": "Felecia Garcia"}] }
For more information about the Rest API you can refer to THIS documentation.
If you need more help, have further questions, or just want to chat about this topic, please don't hesitate to reach out.