POST api/UnifyDataSync/InvoiceSyncExport
Request Information
URI Parameters
None.
Body Parameters
InvoiceSyncListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationType | UnifyPaymentApplicationType |
None. |
|
| InvoiceStatus | integer |
None. |
|
| PaymentStatus | integer |
None. |
|
| InvoiceType | integer |
None. |
|
| InvoiceSendType | integer |
None. |
|
| QueryClause | string |
None. |
|
| Page | integer |
None. |
|
| ItemsPerPage | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplicationType": 2002001,
"InvoiceStatus": 1,
"PaymentStatus": 2,
"InvoiceType": 3,
"InvoiceSendType": 4,
"QueryClause": "sample string 5",
"Page": 6,
"ItemsPerPage": 7
}
application/xml, text/xml
Sample:
<InvoiceSyncListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <ApplicationType>WF</ApplicationType> <InvoiceSendType>4</InvoiceSendType> <InvoiceStatus>1</InvoiceStatus> <InvoiceType>3</InvoiceType> <ItemsPerPage>7</ItemsPerPage> <Page>6</Page> <PaymentStatus>2</PaymentStatus> <QueryClause>sample string 5</QueryClause> </InvoiceSyncListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FileExportResult| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| FileType | string |
None. |
|
| FileContent | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"FileType": "sample string 2",
"FileContent": "QEA="
}
application/xml, text/xml
Sample:
<FileExportResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <FileContent>QEA=</FileContent> <FileName>sample string 1</FileName> <FileType>sample string 2</FileType> </FileExportResult>