POST api/Administrator/AddLateFeeFineList
Request Information
URI Parameters
None.
Body Parameters
MasterLateFeeName | Description | Type | Additional information |
---|---|---|---|
SessionFk | integer |
None. |
|
SelectedFineType | string |
None. |
|
LateFeeFineList | Collection of LateFeeModel |
None. |
Request Formats
application/json, text/json
Sample:
{ "SessionFk": 1, "SelectedFineType": "sample string 2", "LateFeeFineList": [ { "ID": 1, "Month": "sample string 2", "FineDate": 3, "FineAmount": 4.0, "Type": "sample string 5" }, { "ID": 1, "Month": "sample string 2", "FineDate": 3, "FineAmount": 4.0, "Type": "sample string 5" } ] }
application/xml, text/xml
Sample:
<MasterLateFee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.MasterModels"> <LateFeeFineList> <LateFeeModel> <FineAmount>4</FineAmount> <FineDate>3</FineDate> <ID>1</ID> <Month>sample string 2</Month> <Type>sample string 5</Type> </LateFeeModel> <LateFeeModel> <FineAmount>4</FineAmount> <FineDate>3</FineDate> <ID>1</ID> <Month>sample string 2</Month> <Type>sample string 5</Type> </LateFeeModel> </LateFeeFineList> <SelectedFineType>sample string 2</SelectedFineType> <SessionFk>1</SessionFk> </MasterLateFee>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.