GET api/Bookings/VerifyReference/{Reference}/{ConfirmAttendees}

Allows a client to request a ticket/booking reference to be validated.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Reference

The ticket or booking reference to be validated.

string

Required

ConfirmAttendees

A flag to mark if the ticket should be validated and marked as used.

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.

Response Formats

application/json, text/json

Sample:
{"Result":"VALID TICKET","Message":"Ticket found and validated."}

application/xml, text/xml

Sample:
<?xml version="1.0" encoding="utf-16"?>
<InformationResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Result>VALID TICKET</Result>
  <Message>Ticket found and validated.</Message>
</InformationResponse>