Skip to content

Contact_Retrieve

Jacob McConnell edited this page Jun 10, 2014 · 2 revisions

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"
}

Clone this wiki locally