Unable to retrieve the display value from the reference field via rest callIssue When customer try to pull the information from incident table via api call using any third party tool, the reference field like 'company' etc are unable to retrieve display value instead retrieving sys id value as below: For example, - Tried to pull the record from incident table via rest api explorer.- Observed that, retrieving the company value as sys id instead of display value=============="company": {"link": "https://<instancename>.service-now.com/api/now/table/core_company/65e92c9b3774c3005140c7d1b3990eee","value": "65e92c9b3774c3005140c7d1b3990eee"}============== CauseSince 'company' is the reference field in incident table, it is an OOB behaviour that sys id is being retrieved while doing a get api calls from incident table.ResolutionEnabling the parameter "sysparm_display_value=all" will solve this display issue. For example: Below would be URI https://<instancename>.service-now.com/api/now/table/incident?sysparm_display_value=all >> This will enable to view display value along with sys id for the reference field. ======="company": {"display_value": "CompanyName","link": "https://<instancename>.service-now.com/api/now/table/core_company/65e92c9b3774c3005140c7d1b3990eee","value": "65e92c9b3774c3005140c7d1b3990eee"}=======