POST api/Data/ListPlatformReport
查詢平臺管理相關
Request Information
URI Parameters
None.
Body Parameters
ReportFilterName | Description | Type | Additional information |
---|---|---|---|
UnitName |
單位名稱(e.g. 教育部、臺北市....) |
string |
None. |
ReportType |
報表類型 D 代表桌面版 M 代表手機板 |
string |
None. |
ReportName |
報表名稱 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "UnitName": "sample string 1", "ReportType": "sample string 2", "ReportName": "sample string 3" }
application/xml, text/xml
Sample:
<DataClass.ReportFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End"> <ReportName>sample string 3</ReportName> <ReportType>sample string 2</ReportType> <UnitName>sample string 1</UnitName> </DataClass.ReportFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ReportInfoName | Description | Type | Additional information |
---|---|---|---|
ReportName |
報表名稱 |
string |
None. |
URL |
報表URL |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ReportName": "sample string 1", "URL": "sample string 2" }, { "ReportName": "sample string 1", "URL": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfDataClass.ReportInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End"> <DataClass.ReportInfo> <ReportName>sample string 1</ReportName> <URL>sample string 2</URL> </DataClass.ReportInfo> <DataClass.ReportInfo> <ReportName>sample string 1</ReportName> <URL>sample string 2</URL> </DataClass.ReportInfo> </ArrayOfDataClass.ReportInfo>