Event Date Resources
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 | String | OPTIONAL. The event date group of this Event Date |
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 |