GET api/Events/My/Tickets

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of MyTicketModel
NameDescriptionTypeAdditional information
ID

integer

None.

Serial

string

None.

Type

string

None.

EventName

string

None.

EventPoster

string

None.

EventOrderID

integer

None.

Price

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Serial": "sample string 2",
    "Type": "sample string 3",
    "EventName": "sample string 4",
    "EventPoster": "sample string 5",
    "EventOrderID": 1,
    "Price": 6.1
  },
  {
    "ID": 1,
    "Serial": "sample string 2",
    "Type": "sample string 3",
    "EventName": "sample string 4",
    "EventPoster": "sample string 5",
    "EventOrderID": 1,
    "Price": 6.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfMyTicketModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JAD.API.Models">
  <MyTicketModel>
    <EventName>sample string 4</EventName>
    <EventOrderID>1</EventOrderID>
    <EventPoster>sample string 5</EventPoster>
    <ID>1</ID>
    <Price>6.1</Price>
    <Serial>sample string 2</Serial>
    <Type>sample string 3</Type>
  </MyTicketModel>
  <MyTicketModel>
    <EventName>sample string 4</EventName>
    <EventOrderID>1</EventOrderID>
    <EventPoster>sample string 5</EventPoster>
    <ID>1</ID>
    <Price>6.1</Price>
    <Serial>sample string 2</Serial>
    <Type>sample string 3</Type>
  </MyTicketModel>
</ArrayOfMyTicketModel>