Event Date Resources
An event date is a set of ticket types in a venue configuration at a particular time. IWannaTicket assumes that separate event dates have separate allocations, so if you create two event dates at the same venue at the same time, IWannaTicket won't notice and the handling of the real-world situation is a matter for you!
Get Event Date Summary
- Description
- Gets a summary of the event date.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/eventDate/{id}
Output
Name | Type | Description |
---|---|---|
event | Ref | The Event of this Event Date |
startDate | Date | The start date of this Event Date |
ticketTypes | List[Ref] | The Ticket Types of this Event Date |
ticketsAvailable | Number | The number of tickets still available |
ticketsSold | Number | The number of tickets sold |
ticketsAdmitted | Number | The number of tickets scanned or otherwise admitted for the event date |
revenue | Currency | The revenue of the event date |
Create Event Date
- Description
- Creates a new event date with the specified properties.
- Method
- POST
- URL
- https://api.iwannaticket.com.au/api/v2/eventDate/
Input
Name | Type | Description |
---|---|---|
event | Number | The Event of this Event Date |
venueConfiguration | Number | The Venue Configuration of this Event Date |
eventStart | String | The start date of this Event Date, format "dd-MM-yyyy'T'HH:mm" |
group | Optional String | The event date group of this Event Date |
label | Optional String | The event date label of this Event Date |
sortIdx | Optional Number | The event date's sort order value |
crkey | Optional Boolean | Whether to generate a key for CodeREADr scan-to-URL functionality |
Output
Name | Type | Description |
---|---|---|
id | Number | The ID of this Event Date |
Minimal Admissions
- Description
- Gets the list of admissions for the event date with the minimal data.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/eventDate/{id}/admissionsMinimal
Input
Name | Type | Description |
---|---|---|
modifiedAfter | long timestamp | Optional querystring field. If specified will only return those admissions that have
changed and have been created since the timestamp sent as a unix epoch long value in UTC.
If not specified will return all results. |
Output
Name | Type | Description |
---|---|---|
admissions | List[AdmissionMinimal] | The set of admissions |
timestamp | long timestamp | The server timestamp this response was generated on. The value can be used in subsequent requests to get only those records that have changed. |
Bulk Admit
- Description
- Admit one or more admissions to this Event Date
- Method
- POST
- URL
- https://api.iwannaticket.com.au/api/v2/eventDate/{id}/admit
Input
The UUIDs of all Admissions to admit comma-separated as the request body
Name | Type | Description |
---|---|---|
modifiedAfter | long timestamp | Optional querystring field. If specified will only return those admissions that have
changed and and have been created since the timestamp sent as a unix epoch long value in UTC.
If not specified will not show admissions as minified. |
Output
Name | Type | Description |
---|---|---|
admissions | List[AdmissionResult] | The admissions that were processed |
admissionsTotal | Number | The total number of admissions that were requested to be admitted |
admissionsAdmitted | Number | The number of admissions that were successfully admitted |
Get Event Date Metadata
- Description
- Gets static metadata of the event date.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/eventDate/{id}/metadata
Output
Name | Type | Description |
---|---|---|
event | Ref | The Event of this Event Date |
label | String | The label of this Event Date |
startDate | Date | The start time of this Event Date |
ticketTypes | List[TicketTypeMetadata] | The Ticket Types of this Event Date |
codereadrKey | Optional String | The CodeREADr key of this Event Date |