Converts a Lead into an Account, Contact, or (optionally) an Opportunity.
LeadConvertResult[] = sfdc.convertLead(leadConverts LeadConvert[]);
Use convertLead() to convert a Lead into an Account and Contact, as well as (optionally) an Opportunity. To convert a Lead, your client application must be logged in with the “Convert Leads” permission and the “Edit” permission on leads, as well as "Create" and "Edit" on the Account, Contact, and Opportunity objects.
This call provides an easy way to convert the information in a qualified lead to a new or updated account, contact, and opportunity. Your organization can set its own guidelines for determining when a lead is qualified, but typically, a lead can be converted as soon as it becomes a real opportunity that you want to forecast.
If data is merged into existing account and contact objects, then only empty fields in the target object are overwritten—existing data (including IDs) are not overwritten. The only exception to this is if your client application sets overwriteLeadSource to true, in which case the LeadSource field in the target Contact object will be overwritten with the contents of the LeadSource field in the source Lead object.
When converting leads, consider the following rules and guidelines:
The system automatically maps standard lead fields to standard account, contact, and opportunity fields. For custom lead fields, your Salesforce administrator can specify how they map to custom account, contact, and opportunity fields.
If the organization uses record types, the default record type of the new owner is assigned to records created during lead conversion. For more information about record types, see the Salesforce online help.
The system assigns the default picklist values for the account, contact, and opportunity when mapping any standard lead picklist fields that are blank. If your organization uses record types, blank values are replaced with the default picklist values of the new record owner.
Converting leads involves the following basic steps:
select id, name from account where name='CompanyNameOfLeadBeingMerged'
select id, name from contact where firstName='FirstName' and lastName='LastName' and accountId = '001…'
private Boolean convertLead (String leadId, String contactId,
String accountId, boolean overWriteLeadSource, boolean doNotCreateOpportunity,
String opportunityName, String convertedStatus, boolean sendEmailToOwner)
{
LeadConvert leadConvert = new LeadConvert();
leadConvert.setLeadId(leadId);
leadConvert.setContactId(contactId);
leadConvert.setAccountId(accountId);
leadConvert.setOverwriteLeadSource(overWriteLeadSource);
leadConvert.setDoNotCreateOpportunity(doNotCreateOpportunity);
leadConvert.setOpportunityName(opportunityName);
leadConvert.setConvertedStatus(convertedStatus);
leadConvert.setSendNotificationEmail(sendEmailToOwner);
LeadConvertResult[] lcr = null;
try {
lcr = binding.convertLead(new LeadConvert[] {leadConvert});
for (int i=0; i<lcr.length; i++) {
if (lcr[i].isSuccess()) {
System.out.println("Conversion succeeded.\n");
LeadConvertResult result = lcr[i];
System.out.println("The new contact id is: " + result.getContactId());
} else {
System.out.println("The conversion failed because: " + lcr[i].getErrors(0).getMessage());
}
}
} catch (UnexpectedErrorFault e) {
System.out.println("Unexpected error encountered:\n\n" + e.getExceptionMessage());
return Boolean.FALSE;
} catch (RemoteException e) {
System.out.println("Remote exception encountered:\n\n" + e.getMessage());
return Boolean.FALSE;
}
return Boolean.TRUE;
}
private bool convertLead(string leadId, string contactId,
string accountId, bool overWriteLeadSource,
bool doNotCreateOpportunity, string opportunityName,
string convertedStatus, bool sendEmailToOwner)
{
sforce.LeadConvert leadConvert = new sforce.LeadConvert();
leadConvert.leadId = leadId;
leadConvert.contactId = contactId;
leadConvert.accountId = accountId;
leadConvert.overwriteLeadSource = overWriteLeadSource;
leadConvert.doNotCreateOpportunity = doNotCreateOpportunity;
leadConvert.opportunityName = opportunityName;
leadConvert.convertedStatus = convertedStatus;
leadConvert.sendNotificationEmail = sendEmailToOwner;
sforce.LeadConvertResult[] lcr = null;
try
{
lcr = binding.convertLead(new sforce.LeadConvert[] {leadConvert});
for (int i=0;i<lcr.Length;i++)
if (lcr[i].success)
{
Console.WriteLine("Conversion succeeded.\n");
sforce.LeadConvertResult result = lcr[i];
Console.WriteLine("The new contact id is: " + result.contactId);
}
else
{
Console.WriteLine("The conversion failed because: " + lcr[i].errors[0].message);
}
}
catch (Exception e)
{
Console.WriteLine("Unexpected error encountered:\n\n" + e.Message);
return false;
}
return true;
}
This call accepts an array of LeadConvert objects (100 maximum). A LeadConvert object contains the following properties.
| Name | Type | Description |
|---|---|---|
| accountId | ID | ID of the Account into which the lead will be merged. Required only when updating an existing account, including person accounts. If no accountID is specified, then the API creates a new account. To create a new account, the client application must be logged in with sufficient access rights. To merge a lead into an existing account, the client application must be logged in with read/write access to the specified account. The account name and other existing data are not overwritten. For information on IDs, see ID Field Type. |
| contactId | ID | ID of the Contact into which the lead will be merged (this contact must be associated with the specified accountId, and an accountId must be specified). Required only when updating an existing contact.If no contactID is specified, then the API creates a new contact that is implicitly associated with the Account. To create a new contact, the client application must be logged in with sufficient access rights. To merge a lead into an existing contact, the client application must be logged in with read/write access to the specified contact. The contact name and other existing data are not overwritten (unless overwriteLeadSource is set to true, in which case only the LeadSource field is overwritten). For information on IDs, see ID Field Type. |
| convertedStatus | string | Valid LeadStatus value for a converted lead. Required.
To obtain the list of possible values, the client application queries
the LeadStatus object, as in: Select Id, MasterLabel from LeadStatus where IsConverted=true |
| doNotCreateOpportunity | boolean | Specifies whether to create an Opportunity during lead conversion (false, the default) or not (true). Set this flag to true only if you do not want to create an opportunity from the lead. An opportunity is created by default. |
| leadId | ID | ID of the Lead to convert. Required. For information on IDs, see ID Field Type. |
| opportunityName | string | Name of the opportunity to create. If no name is specified, then this value defaults to the company name of the lead. The maximum length of this field is 80 characters. If doNotCreateOpportunity argument is true, then no Opportunity is created and this field must be left blank; otherwise, an error is returned. |
| overwriteLeadSource | boolean | Specifies whether to overwrite the LeadSource field on the target Contact object with the contents of the LeadSource field in the source Lead object (true), or not (false, the default). To set this field to true, the client application must specify a contactId for the target contact. |
| ownerId | ID | Specifies the ID of the person to own any newly created account, contact, and opportunity. If the client application does not specify this value, then the owner of the new object will be the owner of the lead. Not applicable when merging with existing objects—if an ownerId is specified, the API does not overwrite the ownerId field in an existing account or contact. For information on IDs, see ID Field Type. |
| sendNotificationEmail | boolean | Specifies whether to send a notification email to the owner specified in the ownerId (true) or not (false, the default). |