POST api/AdminOffLineFeeImport/ImportTask?SessionID={SessionID}&filePath={filePath}&Domain={Domain}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SessionID | integer |
Required |
|
| filePath | string |
Required |
|
| Domain | string |
Required |
Body Parameters
None.
Response Information
Resource Description
OffLineFeeUploadModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ExcelTablestring | string |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| Domain | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExcelTablestring": "sample string 1",
"Status": 2,
"Message": "sample string 3",
"Data": {},
"Domain": "sample string 5"
}
application/xml, text/xml
Sample:
<OffLineFeeUploadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.Administrator"> <Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 5</Domain> <Data xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models" /> <Message xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 3</Message> <Status xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">2</Status> <ExcelTablestring>sample string 1</ExcelTablestring> </OffLineFeeUploadModel>