function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sailor67Sailor67 

How to access "Additional Information" fields via API?

On the Account and Opportunity objects there are some fields grouped under the Additional Information header on the web form. For Account e.g Customer Priority, SLA Expiration Date etc. and for Opportunity, Order Number, Current Generators etc..

 

These fields seems impossible to access via the REST API, or am I missing something?

Best Answer chosen by Admin (Salesforce Developers) 
Daniel HaselhanDaniel Haselhan

Judging from the fact that I cannot find any of these fields on my Salesforce, they appear to be custom fields.

 

If you issue a describe call like this:

https://{someinstance}.salesforce.com/services/data/v20.0/sobjects/account/describe

 

It should return all the fields on the account and hopefully you can find the correct API names for those fields.

 

Hope this helps.

 

All Answers

Daniel HaselhanDaniel Haselhan

Judging from the fact that I cannot find any of these fields on my Salesforce, they appear to be custom fields.

 

If you issue a describe call like this:

https://{someinstance}.salesforce.com/services/data/v20.0/sobjects/account/describe

 

It should return all the fields on the account and hopefully you can find the correct API names for those fields.

 

Hope this helps.

 

This was selected as the best answer
Sailor67Sailor67

You are right, they are!!

 

I never added them, but apparently they were added as default custom fiedls on my developer account.

 

Thanks!