GET accounts/details/me

Gets account details for the currently authenticated user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Gets account details for the currently authenticated user.

AccountDetailsResponse
NameDescriptionTypeAdditional information
CompanyName

Gets or sets the name of the company.

string

None.

Address1

Gets or sets the address1.

string

None.

Address2

Gets or sets the address2.

string

None.

City

Gets or sets the city.

string

None.

State

Gets or sets the state.

string

None.

Zip

Gets or sets the zip.

string

None.

Phone

Gets or sets the phone.

string

None.

Fax

Gets or sets the fax.

string

None.

Email

Gets or sets the email.

string

None.

Mid

Gets or sets the merchant id (MerchantNumber)

string

None.

Tid

Gets or sets the terminal id (TerminalNumber).

string

None.

ProcessorId

Gets or sets the processor identifier.

string

None.

ProcessorName

Gets or sets the name of the processor.

string

None.

AcceptedCardTypes

Gets or sets the [merchant] accepted card types.

Collection of PaymentCardType

None.

ReceiptData

Gets or sets the receipt data.

ReceiptHeaderFooterData

None.

Response Formats

application/json, text/json

Sample:
{
  "CompanyName": "sample string 1",
  "Address1": "sample string 2",
  "Address2": "sample string 3",
  "City": "sample string 4",
  "State": "sample string 5",
  "Zip": "sample string 6",
  "Phone": "sample string 7",
  "Fax": "sample string 8",
  "Email": "sample string 9",
  "Mid": "sample string 10",
  "Tid": "sample string 11",
  "ProcessorId": "sample string 12",
  "ProcessorName": "sample string 13",
  "AcceptedCardTypes": [
    "Other",
    "Other"
  ],
  "ReceiptData": {
    "HeaderLines": [
      "sample string 1",
      "sample string 2"
    ],
    "FooterLines": [
      "sample string 1",
      "sample string 2"
    ]
  }
}