Set In-Game Speaker Locations
Sends a list of in-game speaker locations that the tone board can select.
Set In-Game Speaker Locations
POST
/radio/set-server-speakers
Sends a list of in-game speaker locations that the tone board can select.
When played, the play_tone push event will be sent to your server's pushUrl.
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
Name
Type
Description
id
string
Community ID
key
string
Community API Key
locations
array of Location
objects
In-Game Tone Locations
// Location Object Array Structure
[
{
"label": "Fire Station 123" // STRING: Label for in-game location
"id": "STATION_123" // STRING: Unique ID for in-game location
},
{
"label": "Police Station ABC" // STRING: Label for in-game location
"id": "STATION_456" // STRING: Unique ID for in-game location
}
]
Response
{
"result": "ok"
}
Last updated
Was this helpful?