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
SimplySfdcSimplySfdc 

retrieve object name from first 3 letter object id

Hi,

 

Is it possible or is there any API call to know object name using first 3 letters of object id,

without have to call DescribeGlobal + DescribeSObject, because it take too long to call all objects just to find out the object name from an object id.

Thanks.

 

sq

SuperfellSuperfell
If you're on the latest version of the API you can work this out from just the results of the decribeGlobal call.
SimplySfdcSimplySfdc
thx Simon for this info.