POST api/Student/CreateStudentPaymentDetail
Request Information
URI Parameters
None.
Body Parameters
modstudentpayment| Name | Description | Type | Additional information |
|---|---|---|---|
| totalamount | string |
None. |
|
| studentid | string |
None. |
|
| totalpaidamount | string |
None. |
|
| totaldueamount | string |
None. |
|
| totaldiscount | string |
None. |
|
| payment | Collection of modpayment |
None. |
Request Formats
application/json, text/json
Sample:
{
"totalamount": "sample string 1",
"studentid": "sample string 2",
"totalpaidamount": "sample string 3",
"totaldueamount": "sample string 4",
"totaldiscount": "sample string 5",
"payment": [
{
"feename": "sample string 1",
"feeamount": "sample string 2",
"disamount": "sample string 3",
"paidamount": "sample string 4"
},
{
"feename": "sample string 1",
"feeamount": "sample string 2",
"disamount": "sample string 3",
"paidamount": "sample string 4"
}
]
}
text/html
Sample:
{"totalamount":"sample string 1","studentid":"sample string 2","totalpaidamount":"sample string 3","totaldueamount":"sample string 4","totaldiscount":"sample string 5","payment":[{"feename":"sample string 1","feeamount":"sample string 2","disamount":"sample string 3","paidamount":"sample string 4"},{"feename":"sample string 1","feeamount":"sample string 2","disamount":"sample string 3","paidamount":"sample string 4"}]}
application/xml, text/xml
Sample:
<modstudentpayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MNBSchoolManagemantApi.Models">
<payment>
<modpayment>
<disamount>sample string 3</disamount>
<feeamount>sample string 2</feeamount>
<feename>sample string 1</feename>
<paidamount>sample string 4</paidamount>
</modpayment>
<modpayment>
<disamount>sample string 3</disamount>
<feeamount>sample string 2</feeamount>
<feename>sample string 1</feename>
<paidamount>sample string 4</paidamount>
</modpayment>
</payment>
<studentid>sample string 2</studentid>
<totalamount>sample string 1</totalamount>
<totaldiscount>sample string 5</totaldiscount>
<totaldueamount>sample string 4</totaldueamount>
<totalpaidamount>sample string 3</totalpaidamount>
</modstudentpayment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json, text/html
Sample:
Sample not available.