How to get converted Contact Id after Lead conversion in Salesforce?

How to get converted Contact Id after Lead conversion in Salesforce?

When the Lead is converted to Account, Contact and Opportunity in Salesforce, ConvertedContactId on the Lead Object will contain the Contact Id after the Lead Conversion.

Sample Query:
SELECT Name, ConvertedContactId 
FROM Lead 
WHERE ConvertedContactId != null

Similarly, ConvertedAccountId and ConvertedOpportunityId will contain the Account Id and Opportunity Id after the Lead Conversion process.

Leave a Reply