GET api/Event/History

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiEventHistoryView
NameDescriptionTypeAdditional information
RfqId

integer

None.

EventCode

string

None.

Title

string

None.

VenueName

string

None.

VenueTypes

Collection of string

None.

Status

string

None.

PdfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "rfqId": 1,
  "eventCode": "sample string 2",
  "title": "sample string 3",
  "venueName": "sample string 4",
  "venueTypes": [
    "sample string 1",
    "sample string 2"
  ],
  "status": "sample string 5",
  "pdfUrl": "sample string 6"
}

text/html

Sample:
{"rfqId":1,"eventCode":"sample string 2","title":"sample string 3","venueName":"sample string 4","venueTypes":["sample string 1","sample string 2"],"status":"sample string 5","pdfUrl":"sample string 6"}

application/xml, text/xml

Sample:
<ApiEventHistoryView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Service.Contracts.Api">
  <EventCode>sample string 2</EventCode>
  <PdfUrl>sample string 6</PdfUrl>
  <RfqId>1</RfqId>
  <Status>sample string 5</Status>
  <Title>sample string 3</Title>
  <VenueName>sample string 4</VenueName>
  <VenueTypes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </VenueTypes>
</ApiEventHistoryView>