How to get the list of custom objects in Salesforce using API ?
Hi, how can I get the list of created custom objects in Salesforce using API ? Where can I find them ?
Hi,
To get the list of all created custom objects in Salesforce, you have to get the list of all Salesforce objects and filter it by "custom": true
The endpoint is called "SObject Basic Information":
{{_endpoint}}/services/data/v{{version}}/sobjects/
1 answer