POST api/Reconciliation/IsAggregatedMerchantReportComplete
Request Information
URI Parameters
None.
Body Parameters
AggregatedMerchantReportRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| AggregatedMerchantReportID | integer |
None. |
|
| ReportType | AggregatedMerchantReportType |
None. |
|
| Data | Collection of CSVFileList |
None. |
Request Formats
application/json, text/json
Sample:
{
"AggregatedMerchantReportID": 1,
"ReportType": 1,
"Data": [
{
"FileName": "sample string 1",
"CSVData": "sample string 2"
},
{
"FileName": "sample string 1",
"CSVData": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<AggregatedMerchantReportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Reports">
<AggregatedMerchantReportID>1</AggregatedMerchantReportID>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.Reconciliation">
<d2p1:CSVFileList>
<d2p1:CSVData>sample string 2</d2p1:CSVData>
<d2p1:FileName>sample string 1</d2p1:FileName>
</d2p1:CSVFileList>
<d2p1:CSVFileList>
<d2p1:CSVData>sample string 2</d2p1:CSVData>
<d2p1:FileName>sample string 1</d2p1:FileName>
</d2p1:CSVFileList>
</Data>
<ReportType>UnclearedTransaction</ReportType>
</AggregatedMerchantReportRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>