I use specifications using the Salesforce API. I searched so much but did not find a list of fields that I could get using the GET method. Can someone provide me with a link that gives me this list, please?
I just found this link https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_get_field_values.htm
thank
You need to use the “describe” call. It will return a list of all the objects that the user can see in org , and it will contain links on how to get more detailed information about all the fields on the account . (you can go directly to the description of the account, if you want, the links are built in a predictable template)
“Describes” is limited to what your profile can see, if the profile does not have a “Read” flag on any object, it will not be displayed in the results.
Go to https://workbench.developerforce.com for example and experiment (from the menu, select Utilities → REST explorer)
/services/data/v41.0
/services/data/v41.0/sobjects
/services/data/v41.0/sobjects/Account/describe
Source: https://habr.com/ru/post/1693014/More articles:How to list all the variables that I defined in Python, except for the imported variables? - variablesUpdating Nested Object Data Arrays (Redux) - javascriptHow to explicitly push / pop onto the C return stack? - cSalesForce - get all fields of an object using .Net SDK or Api - c #Microsoft.Extensions.Caching.Redis selects a different database than db0 - c #Why doesn't babel-standalone @ 6 work in Firefox 20? - javascriptHow to display the entire column in a group by - sqlribbon diagram in R - rKotlin extension lambda versus regular lambda - lambdaecmascript 6 how to call a static class using reflection method - javascriptAll Articles