PUT api/student/fee/{feeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
feeId

integer

Required

Body Parameters

UpdateFeeRequest
NameDescriptionTypeAdditional information
fee_month

date

None.

feesAmount

decimal number

None.

status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "fee_month": "2026-01-01T04:11:32.4857472-08:00",
  "feesAmount": 1.0,
  "status": "sample string 1"
}

application/xml, text/xml

Sample:
<UpdateFeeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SCCApi.Controllers">
  <fee_month>2026-01-01T04:11:32.4857472-08:00</fee_month>
  <feesAmount>1</feesAmount>
  <status>sample string 1</status>
</UpdateFeeRequest>

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.