POST api/event/EventAttendeeImportTemplate
Request Information
URI Parameters
None.
Body Parameters
EventAttendeeFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| AttendeeFilter | AttendeeFilter |
None. |
|
| StatusList | Collection of ApprovalStatusType |
None. |
|
| DiscountId | globally unique identifier |
None. |
|
| PaymentStatus | PaymentStatus |
None. |
|
| CheckStatusType | CheckStatusType |
None. |
|
| QueryClause | string |
None. |
|
| Page | integer |
None. |
|
| ItemsPerPage | integer |
None. |
|
| ExportField | Collection of string |
None. |
|
| RegNumber | globally unique identifier |
None. |
|
| SendType | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "59ef6743-0096-4c69-8fa3-b53dfdfd0073",
"AttendeeFilter": 1003002,
"StatusList": [
1003000,
1003000
],
"DiscountId": "61ed4a3a-0211-42dd-9ac3-c8cbf6b40283",
"PaymentStatus": 1001,
"CheckStatusType": 1001,
"QueryClause": "sample string 3",
"Page": 4,
"ItemsPerPage": 5,
"ExportField": [
"sample string 1",
"sample string 2"
],
"RegNumber": "44e0853c-36ac-4cc7-9fd7-ca786617ce3d",
"SendType": 7
}
application/xml, text/xml
Sample:
<EventAttendeeFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<AttendeeFilter>AllAttendee</AttendeeFilter>
<CheckStatusType>NotChecked</CheckStatusType>
<DiscountId>61ed4a3a-0211-42dd-9ac3-c8cbf6b40283</DiscountId>
<EventId>59ef6743-0096-4c69-8fa3-b53dfdfd0073</EventId>
<ExportField xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ExportField>
<ItemsPerPage>5</ItemsPerPage>
<Page>4</Page>
<PaymentStatus>Unpaid</PaymentStatus>
<QueryClause>sample string 3</QueryClause>
<RegNumber>44e0853c-36ac-4cc7-9fd7-ca786617ce3d</RegNumber>
<SendType>7</SendType>
<StatusList>
<ApprovalStatusType>Draft</ApprovalStatusType>
<ApprovalStatusType>Draft</ApprovalStatusType>
</StatusList>
</EventAttendeeFilter>
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>