Hi, I am using the rest api query and I need to get the label that appear on salesforce but I don't know how to do it.For example if I want the value and de label it would be something like : query?q=select Custom__c, Custom__c.label from Account Thanks
Hi Simon, To get field information like label, length etc.API for Sobject Describe - /services/data/v41.0/sobjects/Account/describeThe Response contains all account fields with the field label and other information.Regards,Siva.