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
AviJhaAviJha 

Get list of fields in a RecordType via SOQL or Data loader export?

Hi,
 
Is there any way to get the list fields in a record type using API or dataloader export?  I am working on a project where contact object have many different record type and I need to integrate it with another system.  and depending upon record type I need to transfer the data to another system.
 
Thanks.
 
AJ
canonwcanonw
Try this SOQL

Select r.Id, r.Name, r.SobjectType from RecordType r Where SobjectType='Contact' And IsActive=true