POST api/Student/AddStudentFee?userid={userid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userid

string

Required

Body Parameters

StudentFee
NameDescriptionTypeAdditional information
studfeeid

integer

None.

centid

string

None.

courseid

string

None.

studentid

string

None.

coursefee

integer

None.

amountpaid

integer

None.

paymentdate

date

None.

modepayment

string

None.

cheque_no

string

None.

bankname

string

None.

concession

integer

None.

createby

string

None.

createon

date

None.

Request Formats

application/json, text/json

Sample:
{
  "studfeeid": 1,
  "centid": "sample string 2",
  "courseid": "sample string 3",
  "studentid": "sample string 4",
  "coursefee": 1,
  "amountpaid": 1,
  "paymentdate": "2025-05-10T10:36:22.5738756+05:30",
  "modepayment": "sample string 5",
  "cheque_no": "sample string 6",
  "bankname": "sample string 7",
  "concession": 1,
  "createby": "sample string 8",
  "createon": "2025-05-10T10:36:22.5738756+05:30"
}

application/xml, text/xml

Sample:
<StudentFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <amountpaid>1</amountpaid>
  <bankname>sample string 7</bankname>
  <centid>sample string 2</centid>
  <cheque_no>sample string 6</cheque_no>
  <concession>1</concession>
  <coursefee>1</coursefee>
  <courseid>sample string 3</courseid>
  <createby>sample string 8</createby>
  <createon>2025-05-10T10:36:22.5738756+05:30</createon>
  <modepayment>sample string 5</modepayment>
  <paymentdate>2025-05-10T10:36:22.5738756+05:30</paymentdate>
  <studentid>sample string 4</studentid>
  <studfeeid>1</studfeeid>
</StudentFee>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>