Venues
What are Venues?
Venues are places or arenas where broadcasts / games take place.
Cameras
Venues have a camera associated to them which broadcasts the games. These cameras are installed by Sportway, and they will link the cameras to the correct Venues.
How do I create them?
To create a venue, simply POST a Venue to our API. Here is a CURL example:
curl --location --request POST 'https://api.livearenasports.com/venue' \
--header 'site-id: BACKOFFICE' \
--header 'Authorization: Bearer <YOUR-TOKEN-HERE>' \
--header 'Content-Type: application/json' \
--data-raw '{
"siteId": "SIF",
"extId": "85910"
}'
We only require a name and a unique id (that you keep track of in your system so you can assign the correct venue when scheduling broadcasts / games) to be supplied when creating or updating venues.