GET api/TicketVouchers/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TicketVoucher| Name | Description | Type | Additional 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": "7161e8ae-d573-41cd-b8bd-f7fef35a03c6",
"ConferenceGuid": "59014965-c0b2-4dbd-b5e6-92b063d0f1f9",
"EventGuid": "9233df10-f55a-469f-95e1-d3fd0f973a54",
"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>59014965-c0b2-4dbd-b5e6-92b063d0f1f9</ConferenceGuid> <EventGuid>9233df10-f55a-469f-95e1-d3fd0f973a54</EventGuid> <TicketVoucherGuid>7161e8ae-d573-41cd-b8bd-f7fef35a03c6</TicketVoucherGuid> <VoucherCode>sample string 2</VoucherCode> <VoucherDescription>sample string 3</VoucherDescription> <VoucherName>sample string 1</VoucherName> </TicketVoucher>
