GET api/klikpaymenttypes

GET: api/klikpaymenttypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of KlikPaymentTypeViewModel
NameDescriptionTypeAdditional information
KlikPaymentTypeId

KlikPaymentTypeId

integer

None.

PaymentCode

PaymentCode

string

None.

Description

Description

string

None.

IsAch

IsAch

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "klikPaymentTypeId": 1,
    "paymentCode": "sample string 2",
    "description": "sample string 3",
    "isAch": 4
  },
  {
    "klikPaymentTypeId": 1,
    "paymentCode": "sample string 2",
    "description": "sample string 3",
    "isAch": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfKlikPaymentTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <KlikPaymentTypeViewModel>
    <Description>sample string 3</Description>
    <IsAch>4</IsAch>
    <KlikPaymentTypeId>1</KlikPaymentTypeId>
    <PaymentCode>sample string 2</PaymentCode>
  </KlikPaymentTypeViewModel>
  <KlikPaymentTypeViewModel>
    <Description>sample string 3</Description>
    <IsAch>4</IsAch>
    <KlikPaymentTypeId>1</KlikPaymentTypeId>
    <PaymentCode>sample string 2</PaymentCode>
  </KlikPaymentTypeViewModel>
</ArrayOfKlikPaymentTypeViewModel>