POST api/event/EventWhiteListImport
Request Information
URI Parameters
None.
Body Parameters
EventIdRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "5b7f2f0b-5323-4b9b-bfcf-a2c716439278"
}
application/xml, text/xml
Sample:
<EventIdRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <EventId>5b7f2f0b-5323-4b9b-bfcf-a2c716439278</EventId> </EventIdRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ImportWhiteListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalRow | integer |
None. |
|
| SuccessRow | integer |
None. |
|
| FailRow | integer |
None. |
|
| ReturnCode | integer |
None. |
|
| MessageCN | string |
None. |
|
| MessageEN | string |
None. |
|
| AttendeeList | Collection of string |
None. |
|
| ImportErrorList | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"AttendeeList": [
"sample string 1",
"sample string 2"
],
"ImportErrorList": [
"sample string 1",
"sample string 2"
],
"TotalRow": 1,
"SuccessRow": 2,
"FailRow": 3,
"ReturnCode": 4,
"MessageCN": "sample string 5",
"MessageEN": "sample string 6"
}
application/xml, text/xml
Sample:
<ImportWhiteListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<AttendeeList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</AttendeeList>
<FailRow>3</FailRow>
<ImportErrorList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ImportErrorList>
<MessageCN>sample string 5</MessageCN>
<MessageEN>sample string 6</MessageEN>
<ReturnCode>4</ReturnCode>
<SuccessRow>2</SuccessRow>
<TotalRow>1</TotalRow>
</ImportWhiteListResult>