GET api/PaymentMethod

Provides a list of possible payment methods

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentMethodItem
NameDescriptionTypeAdditional information
Name

The Name of the Payment Method

string

None.

Description

A description of the payment method

string

None.

Value

The value of the Payment Method

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Value": 3
  },
  {
    "Name": "sample string 1",
    "Description": "sample string 2",
    "Value": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentMethodItem xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <PaymentMethodItem>
    <Name>sample string 1</Name>
    <Description>sample string 2</Description>
    <Value>3</Value>
  </PaymentMethodItem>
  <PaymentMethodItem>
    <Name>sample string 1</Name>
    <Description>sample string 2</Description>
    <Value>3</Value>
  </PaymentMethodItem>
</ArrayOfPaymentMethodItem>