Play Tone
Play one or more tones for a specific Sonoran Radio server.
Play Tone
Name
Value
local response = client.radio:playToneV2(1, { 12 }, {
{ type = "channel", value = 101 }
}, 1)const response = await instance.radio?.playToneV2(
1,
[12],
[{ type: "channel", value: 101 }],
1
);response = instance.radio.playToneV2(
1,
[12],
[{"type": "channel", "value": 101}],
1,
)var response = await sonoran.Radio.playToneV2(new PlayToneV2Request
{
Tones = new object[] { 12 },
PlayTo = new object[] { new { type = "channel", value = 101 } }
});openapi: 3.1.0
paths:
/v2/servers/{communityId}/tones/play:
post:
security:
- bearerAuth: []Response
{
"roomId": 1,
"played": true
}Last updated
Was this helpful?

