POST api/ManageFees/CreateMonthlyPaymentDetail

Request Information

URI Parameters

None.

Body Parameters

modmonthlypayment
NameDescriptionTypeAdditional information
studentid

string

None.

totalAmount

string

None.

totalpaidamount

string

None.

totaldiscount

string

None.

totaldueamount

string

None.

previous_dues

string

None.

month

Collection of string

None.

payment

Collection of modmonpayment

None.

Request Formats

application/json, text/json

Sample:
{
  "studentid": "sample string 1",
  "totalAmount": "sample string 2",
  "totalpaidamount": "sample string 3",
  "totaldiscount": "sample string 4",
  "totaldueamount": "sample string 5",
  "previous_dues": "sample string 6",
  "month": [
    "sample string 1",
    "sample string 2"
  ],
  "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:
{"studentid":"sample string 1","totalAmount":"sample string 2","totalpaidamount":"sample string 3","totaldiscount":"sample string 4","totaldueamount":"sample string 5","previous_dues":"sample string 6","month":["sample string 1","sample string 2"],"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:
<modmonthlypayment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MNBSchoolManagemantApi.Models">
  <month xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </month>
  <payment>
    <modmonpayment>
      <disamount>sample string 3</disamount>
      <feeamount>sample string 2</feeamount>
      <feename>sample string 1</feename>
      <paidamount>sample string 4</paidamount>
    </modmonpayment>
    <modmonpayment>
      <disamount>sample string 3</disamount>
      <feeamount>sample string 2</feeamount>
      <feename>sample string 1</feename>
      <paidamount>sample string 4</paidamount>
    </modmonpayment>
  </payment>
  <previous_dues>sample string 6</previous_dues>
  <studentid>sample string 1</studentid>
  <totalAmount>sample string 2</totalAmount>
  <totaldiscount>sample string 4</totaldiscount>
  <totaldueamount>sample string 5</totaldueamount>
  <totalpaidamount>sample string 3</totalpaidamount>
</modmonthlypayment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json, text/html

Sample:

Sample not available.