GET api/Admin/TokenizedPaymentAccount

Allows you to get a list of Tokenized Payment Accounts

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TokenizedPaymentAccount
NameDescriptionTypeAdditional information
ID

integer

None.

Description

string

None.

TokenizedPaymentProcessor

string

None.

IsActive

boolean

None.

Response Formats

application/xml, text/xml

Sample:
<ListOfTokenizedPaymentAccount>
  <TokenizedPaymentAccount>
    <ID>1</ID>
    <Description>sample string 2</Description>
    <TokenizedPaymentProcessor>sample string 3</TokenizedPaymentProcessor>
    <IsActive>True</IsActive>
  </TokenizedPaymentAccount>
  <TokenizedPaymentAccount>
    <ID>1</ID>
    <Description>sample string 2</Description>
    <TokenizedPaymentProcessor>sample string 3</TokenizedPaymentProcessor>
    <IsActive>True</IsActive>
  </TokenizedPaymentAccount>
</ListOfTokenizedPaymentAccount>

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Description": "sample string 2",
    "TokenizedPaymentProcessor": "sample string 3",
    "IsActive": true
  },
  {
    "ID": 1,
    "Description": "sample string 2",
    "TokenizedPaymentProcessor": "sample string 3",
    "IsActive": true
  }
]