Account Resources
Accounts are containers which hold other objects (e.g. events and users). Accounts are unable to interact with each other.
Get Account Summary
- Description
- Gets a summary of the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}
Output
Name | Type | Description |
---|---|---|
name | String | The name of this Account |
shortName | String | The short name of this Account. This is the name used for the subdomain. |
Get Future Events
- Description
- Gets the future events in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/events
Output
Name | Type | Description |
---|---|---|
refs | List[Ref] | The future Events of the Account. |
Get All Events
- Description
- Gets all events in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/allevents
Output
Name | Type | Description |
---|---|---|
refs | List[Ref] | The Events of the Account. |
Get Event Groups
- Description
- Gets the event groups in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/eventgroups
Output
Name | Type | Description |
---|---|---|
refs | List[Ref] | The Event Groups of the Account. |
Get Venues
- Description
- Gets the venues in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/venues
Output
Name | Type | Description |
---|---|---|
refs | List[Ref] | The Venues of the Account. |
Get Details of Future Events
- Description
- Gets short details of the future events in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/eventSummaries
Output
The output is a list of objects as described below.
Name | Type | Description |
---|---|---|
name | String | The name of the Event. |
description | String | The description for the Event. |
heroImageUrl | String | The URL of the event's hero image. |
iwtLandingPageUrl | String | The URL for the event on IWannaTicket. |
promoterLandingPageUrl | String | The URL for the event on the subdomain. |
lowPrice | Currency | The price of the cheapest ticket in the event (excluding those with the NOT_A_TICKET tag). |
highPrice | Currency | The price of the most expensive ticket in the event (excluding those with the NOT_A_TICKET tag). |
account | Ref | The Account that the event belongs to. |
venue | Ref | The Venue that the Event is at. |
eventDates | List[Ref] | The Event Dates of the Event. |
masterTickets | List[Ref] | The Master Tickets of the Event. |
saleStatus | SaleStatus | The sale status of the Event. |
firstDate | Date | The start time of the first Event Date of the Event. |
lastDate | Date | The start time of the last Event Date of the Event. |
Get Multipacks
- Description
- Gets the enabled multipacks in the account.
- Method
- GET
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/multipacks
Output
Name | Type | Description |
---|---|---|
refs | List[Ref] | The Multipacks of the Account. |
Update Banner Image
- Description
- Updates the banner image for the account.
- Method
- POST
- URL
- https://api.iwannaticket.com.au/api/v2/account/{id}/bannerImage
Input
Send the image contents as a binary body.
Output
No output.