GET api/account/payment-methods

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentMethod
NameDescriptionTypeAdditional information
ID

integer

None.

DisplayName

string

None.

Type

string

None.

GatewayType

string

None.

IsDirectDeposit

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "DisplayName": "sample string 2",
    "Type": "sample string 3",
    "GatewayType": "sample string 4",
    "IsDirectDeposit": true
  },
  {
    "ID": 1,
    "DisplayName": "sample string 2",
    "Type": "sample string 3",
    "GatewayType": "sample string 4",
    "IsDirectDeposit": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iCareApiModel">
  <PaymentMethod>
    <DisplayName>sample string 2</DisplayName>
    <GatewayType>sample string 4</GatewayType>
    <ID>1</ID>
    <IsDirectDeposit>true</IsDirectDeposit>
    <Type>sample string 3</Type>
  </PaymentMethod>
  <PaymentMethod>
    <DisplayName>sample string 2</DisplayName>
    <GatewayType>sample string 4</GatewayType>
    <ID>1</ID>
    <IsDirectDeposit>true</IsDirectDeposit>
    <Type>sample string 3</Type>
  </PaymentMethod>
</ArrayOfPaymentMethod>