GET api/TicketVouchers/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

TicketVoucher
NameDescriptionTypeAdditional information
TicketVoucherGuid

globally unique identifier

None.

ConferenceGuid

globally unique identifier

None.

EventGuid

globally unique identifier

None.

VoucherName

string

None.

VoucherCode

string

None.

VoucherDescription

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TicketVoucherGuid": "215e36b3-bff4-44e9-aaa8-1b2219d13d44",
  "ConferenceGuid": "91f8c524-bfe0-40dc-8c9c-3a4f8aa59365",
  "EventGuid": "09eb217a-6428-4888-8a78-ca57bfa30b3d",
  "VoucherName": "sample string 1",
  "VoucherCode": "sample string 2",
  "VoucherDescription": "sample string 3"
}

application/xml, text/xml

Sample:
<TicketVoucher xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">
  <ConferenceGuid>91f8c524-bfe0-40dc-8c9c-3a4f8aa59365</ConferenceGuid>
  <EventGuid>09eb217a-6428-4888-8a78-ca57bfa30b3d</EventGuid>
  <TicketVoucherGuid>215e36b3-bff4-44e9-aaa8-1b2219d13d44</TicketVoucherGuid>
  <VoucherCode>sample string 2</VoucherCode>
  <VoucherDescription>sample string 3</VoucherDescription>
  <VoucherName>sample string 1</VoucherName>
</TicketVoucher>