GET api/StudentItemPayment/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

StudentItemPayment
NameDescriptionTypeAdditional information
Id

integer

None.

FeeCode

string

String length: inclusive between 0 and 20

PaymentId

integer

None.

Amount

decimal number

None.

isPostable

boolean

None.

User

string

String length: inclusive between 0 and 20

isVoid

boolean

None.

VoidedBy

string

String length: inclusive between 0 and 20

DateVoided

date

None.

Dateadded

date

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "feeCode": "sample string 2",
  "paymentId": 3,
  "amount": 4.0,
  "isPostable": true,
  "user": "sample string 6",
  "isVoid": true,
  "voidedBy": "sample string 8",
  "dateVoided": "2024-09-20T01:52:00.453021+08:00",
  "dateadded": "2024-09-20T01:52:00.453021+08:00"
}

text/html

Sample:
{"id":1,"feeCode":"sample string 2","paymentId":3,"amount":4.0,"isPostable":true,"user":"sample string 6","isVoid":true,"voidedBy":"sample string 8","dateVoided":"2024-09-20T01:52:00.453021+08:00","dateadded":"2024-09-20T01:52:00.453021+08:00"}

application/xml, text/xml

Sample:
<StudentItemPayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Amount>4</Amount>
  <DateVoided>2024-09-20T01:52:00.453021+08:00</DateVoided>
  <Dateadded>2024-09-20T01:52:00.453021+08:00</Dateadded>
  <FeeCode>sample string 2</FeeCode>
  <Id>1</Id>
  <PaymentId>3</PaymentId>
  <User>sample string 6</User>
  <VoidedBy>sample string 8</VoidedBy>
  <isPostable>true</isPostable>
  <isVoid>true</isVoid>
</StudentItemPayment>