PUT api/student/payment/{paymentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paymentId

integer

Required

Body Parameters

UpdatePaymentRequest
NameDescriptionTypeAdditional information
paymentDate

date

None.

totalAmount

decimal number

None.

paidAmount

decimal number

None.

remainingAmount

decimal number

None.

admin_fid

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "paymentDate": "2026-01-01T04:12:15.5097839-08:00",
  "totalAmount": 2.0,
  "paidAmount": 3.0,
  "remainingAmount": 4.0,
  "admin_fid": 1
}

application/xml, text/xml

Sample:
<UpdatePaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SCCApi.Controllers">
  <admin_fid>1</admin_fid>
  <paidAmount>3</paidAmount>
  <paymentDate>2026-01-01T04:12:15.5097839-08:00</paymentDate>
  <remainingAmount>4</remainingAmount>
  <totalAmount>2</totalAmount>
</UpdatePaymentRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.