POST api/event/EventWhiteListExport

Request Information

URI Parameters

None.

Body Parameters

EventIdRequest
NameDescriptionTypeAdditional information
EventId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "EventId": "3f08358a-6789-4dbd-acd5-ff3c51cf57c4"
}

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>3f08358a-6789-4dbd-acd5-ff3c51cf57c4</EventId>
</EventIdRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

FileExportResult
NameDescriptionTypeAdditional 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>