POST Data/ExportRequest
导出数据请求
Request Information
URI Parameters
None.
Body Parameters
stringRequest Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ViewExportResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ExportIdentity |
本次导出任务唯一标识 用于查询导出任务状态 |
string |
None. |
| ResultCode |
返回代码 200为成功,其余为失败,原因参考 ResultMsg |
string |
None. |
| ResultMsg |
返回信息 |
string |
None. |
| ReturnValue |
返回数据 |
Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExportIdentity": "sample string 1",
"ResultCode": "sample string 2",
"ResultMsg": "sample string 3",
"ReturnValue": {}
}
application/xml, text/xml
Sample:
<ViewExportResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MKY.Business.V2.WebApis.Models"> <ResultCode>sample string 2</ResultCode> <ResultMsg>sample string 3</ResultMsg> <ReturnValue /> <ExportIdentity>sample string 1</ExportIdentity> </ViewExportResult>