-
Notifications
You must be signed in to change notification settings - Fork 16
Contact_Retrieve
Craig edited this page Oct 26, 2012
·
2 revisions
2Checkout's back office API allows you to retrieve contact information. You must specify your API username and password using the Twocheckout.apiusername & Twocheckout.apipassword class variables before calling a method in this class. The TwocheckoutContact class provides the retrieve method that will return a Contact object.
##Methods
###retrieve
Use to retrieve contact information from your 2Checkout Contact Information page.
####Arguments
- none
####Returns
Returns a Contact object.
####Example Usage:
Contact result = TwocheckoutCompany.retrieve();####Example Response (toJson):
{
"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",
"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.