POST api/Report/GetExcelReport
Request Information
URI Parameters
None.
Body Parameters
GetExcelReport| Name | Description | Type | Additional information |
|---|---|---|---|
| url | string |
None. |
|
| sheet | string |
None. |
|
| type | string |
None. |
|
| data | Collection of ExcelData |
None. |
Request Formats
application/json, text/json
Sample:
{
"url": "sample string 1",
"sheet": "sample string 2",
"type": "sample string 3",
"data": [
{
"rowIndex": 1,
"rows": [
{
"columnName": "sample string 1",
"data": {},
"type": "sample string 3"
},
{
"columnName": "sample string 1",
"data": {},
"type": "sample string 3"
}
]
},
{
"rowIndex": 1,
"rows": [
{
"columnName": "sample string 1",
"data": {},
"type": "sample string 3"
},
{
"columnName": "sample string 1",
"data": {},
"type": "sample string 3"
}
]
}
]
}
application/xml, text/xml
Sample:
<GetExcelReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models">
<data>
<ExcelData>
<rowIndex>1</rowIndex>
<rows>
<RowData>
<columnName>sample string 1</columnName>
<data />
<type>sample string 3</type>
</RowData>
<RowData>
<columnName>sample string 1</columnName>
<data />
<type>sample string 3</type>
</RowData>
</rows>
</ExcelData>
<ExcelData>
<rowIndex>1</rowIndex>
<rows>
<RowData>
<columnName>sample string 1</columnName>
<data />
<type>sample string 3</type>
</RowData>
<RowData>
<columnName>sample string 1</columnName>
<data />
<type>sample string 3</type>
</RowData>
</rows>
</ExcelData>
</data>
<sheet>sample string 2</sheet>
<type>sample string 3</type>
<url>sample string 1</url>
</GetExcelReport>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |