GET payment/methods

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentMethod
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

paymentType

integer

None.

name

string

None.

order

integer

None.

imgUrl

string

None.

note

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "2e485dc4-64af-4c90-bfc1-3bcf8de2823f",
    "paymentType": 1,
    "name": "sample string 2",
    "order": 3,
    "imgUrl": "sample string 4",
    "note": "sample string 5"
  },
  {
    "id": "2e485dc4-64af-4c90-bfc1-3bcf8de2823f",
    "paymentType": 1,
    "name": "sample string 2",
    "order": 3,
    "imgUrl": "sample string 4",
    "note": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPaymentMethod xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Careby.Api.Models">
  <PaymentMethod>
    <id>2e485dc4-64af-4c90-bfc1-3bcf8de2823f</id>
    <imgUrl>sample string 4</imgUrl>
    <name>sample string 2</name>
    <note>sample string 5</note>
    <order>3</order>
    <paymentType>1</paymentType>
  </PaymentMethod>
  <PaymentMethod>
    <id>2e485dc4-64af-4c90-bfc1-3bcf8de2823f</id>
    <imgUrl>sample string 4</imgUrl>
    <name>sample string 2</name>
    <note>sample string 5</note>
    <order>3</order>
    <paymentType>1</paymentType>
  </PaymentMethod>
</ArrayOfPaymentMethod>