Skip to content

Instantly share code, notes, and snippets.

@tkh44
Created September 20, 2011 20:19
Show Gist options
  • Save tkh44/1230198 to your computer and use it in GitHub Desktop.
Save tkh44/1230198 to your computer and use it in GitHub Desktop.
Lead Post data
"""
Dates in the form of: "%m/%d/%Y"
Required fields:
'status': 'Lead-New'
'address_country': 'US'
'agree': 1
'isperson': 'T'
'globalsubscriptionstatus': '1'
"""
values = {
'email':lead.email,
'firstname':lead.first_name,
'lastname':lead.last_name,
'address_addr1':lead.home_address,
'phone':lead.primary_phone,
'address_city':lead.city,
'address_state':lead.state,
'address_zip':lead.zipcode,
'custentity_date_of_birth':dob,
'custentity_gender_free_form':lead.gender,
'custentity_health_problems': lead.health_problems,
'custentity_requested_effective_date': lead.req_eff_date,
'leadsource': leadsource,
'status':'Lead-New',
'address_country':'US',
'agree':'1',
'isperson':'T',
'globalsubscriptionstatus':'1',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment