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
LibraLibra 

Finding Record Type IDs

Hi,
 
I created an account record type called Customer.  How do I find the id for this record type?  I need it to insert/update accounts record type through the data loader.
sfdcfoxsfdcfox
select id from recordtype where sobjectype = 'Account' and name = 'Customer'
 
~ sfdcfox ~