POST api/event/EventAttendeePendingExport
Request Information
URI Parameters
None.
Body Parameters
EventAttendeePendingExportRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| ApprovalStatus | ApprovalStatusType |
None. |
|
| StatusList | Collection of ApprovalStatusType |
None. |
|
| PaymentStatus | PaymentStatus |
None. |
|
| CheckStatus | CheckStatusType |
None. |
|
| DiscountId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "e7302bd9-21f4-4f77-bd32-fb9e9b43726d",
"ApprovalStatus": 1003000,
"StatusList": [
1003000,
1003000
],
"PaymentStatus": 1001,
"CheckStatus": 1001,
"DiscountId": "d36d25b3-b7d7-4ea3-b256-30a8d003f482"
}
application/xml, text/xml
Sample:
<EventAttendeePendingExportRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<ApprovalStatus>Draft</ApprovalStatus>
<CheckStatus>NotChecked</CheckStatus>
<DiscountId>d36d25b3-b7d7-4ea3-b256-30a8d003f482</DiscountId>
<EventId>e7302bd9-21f4-4f77-bd32-fb9e9b43726d</EventId>
<PaymentStatus>Unpaid</PaymentStatus>
<StatusList>
<ApprovalStatusType>Draft</ApprovalStatusType>
<ApprovalStatusType>Draft</ApprovalStatusType>
</StatusList>
</EventAttendeePendingExportRequest>
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>