POST api/finance/PaymentAttendeeExportByFilter
Request Information
URI Parameters
None.
Body Parameters
PaymentAttendeeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| DiscountType | HaveDiscount |
None. |
|
| PaymentStatus | PaymentStatus |
None. |
|
| InvoiceStatus | InvoiceStatus |
None. |
|
| RegNumber | globally unique identifier |
None. |
|
| QueryClause | string |
None. |
|
| Page | integer |
None. |
|
| ItemsPerPage | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "0fca09d7-fa4f-4c12-8920-a2d1b20f0d24",
"DiscountType": 1001,
"PaymentStatus": 1001,
"InvoiceStatus": 1013001,
"RegNumber": "57264ac7-9b78-45d2-8a52-7e3bec0c9ed5",
"QueryClause": "sample string 3",
"Page": 4,
"ItemsPerPage": 5
}
application/xml, text/xml
Sample:
<PaymentAttendeeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <DiscountType>AllDiscount</DiscountType> <EventId>0fca09d7-fa4f-4c12-8920-a2d1b20f0d24</EventId> <InvoiceStatus>UnInvoiced</InvoiceStatus> <ItemsPerPage>5</ItemsPerPage> <Page>4</Page> <PaymentStatus>Unpaid</PaymentStatus> <QueryClause>sample string 3</QueryClause> <RegNumber>57264ac7-9b78-45d2-8a52-7e3bec0c9ed5</RegNumber> </PaymentAttendeeRequest>
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>