-
Notifications
You must be signed in to change notification settings - Fork 17
Contact_Retrieve
Craig Christenson edited this page Oct 26, 2012
·
1 revision
You must specify your API username and password using the twocheckout.Api.credentials method before calling a method in this class.
##Methods
###retrieve
Use to retrieve contact information from your 2Checkout Contact Information page.
####Arguments
- none
####Returns
Returns a Python object.
####Example Usage:
twocheckout.Api.credentials({'username':'APIuser1817037', 'password':'APIpass1817037'})
result = twocheckout.Contact.retrieve()
print result####Example Response:
{
'2co_account_level_id': '1',
'customer_service_email': 'no-reply@2checkout.com',
'customer_service_phone': '6149212450',
'customer_service_phone_ext': '0',
'mailing_address_1': '1785 Obrien Rd',
'mailing_address_2': '1785 Obrien Rd',
'mailing_address_id': '4774374395',
'mailing_city': 'Columbus',
'mailing_country_code': 'USA',
'mailing_postal_code': '43228',
'mailing_state': 'OH',
'mid': 'BOFA',
'office_email': 'no-reply@2checkout.com',
'office_phone': '6149212450',
'office_phone_ext': '0',
'physical_address_1': '1785 Obrien Rd',
'physical_address_2': '1785 Obrien Rd',
'physical_address_id': '4774374398',
'physical_city': 'Columbus',
'physical_country_code': 'USA',
'physical_postal_code': '43228',
'physical_state': 'OH',
'vendor_id': '1817037'
}Please feel free to contact 2Checkout directly for assistance with your integration.