GET api/klikpaymenttypes/{id}

GET: api/klikpaymenttypes/{id} Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

KlikPaymentTypeViewModel

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
}

application/xml, text/xml

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