GET api/paymentMode

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PaymentMode
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

NumberofPayments

integer

None.

Category

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "termId": 2,
    "numberofPayments": 3,
    "category": "sample string 4"
  },
  {
    "id": 1,
    "termId": 2,
    "numberofPayments": 3,
    "category": "sample string 4"
  }
]

text/html

Sample:
[{"id":1,"termId":2,"numberofPayments":3,"category":"sample string 4"},{"id":1,"termId":2,"numberofPayments":3,"category":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfPaymentMode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <PaymentMode>
    <Category>sample string 4</Category>
    <Id>1</Id>
    <NumberofPayments>3</NumberofPayments>
    <TermId>2</TermId>
  </PaymentMode>
  <PaymentMode>
    <Category>sample string 4</Category>
    <Id>1</Id>
    <NumberofPayments>3</NumberofPayments>
    <TermId>2</TermId>
  </PaymentMode>
</ArrayOfPaymentMode>