POST api/OtherStudentFee

Request Information

URI Parameters

None.

Body Parameters

OtherStudentFee
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

IdCardnumber

string

String length: inclusive between 0 and 20

FeeTypeId

integer

None.

FeeId

integer

None.

Amount

decimal number

None.

Username

string

String length: inclusive between 0 and 50

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "termId": 2,
  "idCardnumber": "sample string 3",
  "feeTypeId": 4,
  "feeId": 5,
  "amount": 6.0,
  "username": "sample string 7"
}

text/html

Sample:
{"id":1,"termId":2,"idCardnumber":"sample string 3","feeTypeId":4,"feeId":5,"amount":6.0,"username":"sample string 7"}

application/xml, text/xml

Sample:
<OtherStudentFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <Amount>6</Amount>
  <FeeId>5</FeeId>
  <FeeTypeId>4</FeeTypeId>
  <Id>1</Id>
  <IdCardnumber>sample string 3</IdCardnumber>
  <TermId>2</TermId>
  <Username>sample string 7</Username>
</OtherStudentFee>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.