1

wondered if anyone has used jsForce to retrieve metadata about custom fields - per what is possible via the DescribeFieldResult call described here - https://developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_methods_system_fields_describe.htm

Any pointers are appreciated!

user1517566
  • 348
  • 1
  • 3
  • 14

1 Answers1

0

Call the REST API "describe", for example /services/data/v56.0/sobjects/Account/describe

enter image description here

Or write a piece of Apex that would run your describe call and expose it as a REST service using @HttpGet for example. Then call it with apexrest in the URL

eyescream
  • 18,088
  • 2
  • 34
  • 46