GET api/StudentItemPayment/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StudentItemPaymentName | Description | Type | Additional 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": "2025-04-26T21:29:32.798649+08:00", "dateadded": "2025-04-26T21:29:32.798649+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":"2025-04-26T21:29:32.798649+08:00","dateadded":"2025-04-26T21:29:32.798649+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>2025-04-26T21:29:32.798649+08:00</DateVoided> <Dateadded>2025-04-26T21:29:32.798649+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>