POST api/SubjectFee

Request Information

URI Parameters

None.

Body Parameters

SubjectFee
NameDescriptionTypeAdditional information
Id

integer

None.

TermId

integer

None.

AdmissionYear

integer

None.

TypeId

integer

None.

SubjCode

string

String length: inclusive between 0 and 20

Amount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "termId": 2,
  "admissionYear": 3,
  "typeId": 4,
  "subjCode": "sample string 5",
  "amount": 6.0
}

text/html

Sample:
{"id":1,"termId":2,"admissionYear":3,"typeId":4,"subjCode":"sample string 5","amount":6.0}

application/xml, text/xml

Sample:
<SubjectFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <AdmissionYear>3</AdmissionYear>
  <Amount>6</Amount>
  <Id>1</Id>
  <SubjCode>sample string 5</SubjCode>
  <TermId>2</TermId>
  <TypeId>4</TypeId>
</SubjectFee>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.