Get audio gateway config
curl --request POST \
--url https://api2.rhombussystems.com/api/audiogateway/getConfig \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/audiogateway/getConfig"
payload = { "audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA" }
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({audioGatewayUuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/audiogateway/getConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/audiogateway/getConfig")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"audioGatewayUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"config": {
"ai_license_invalid": true,
"audio_aec_via_software": true,
"audio_ai_disabled": true,
"audio_analysis_enabled": true,
"audio_analysis_params": {
"expressions": [
{
"confidence_min": 123,
"expression": "<string>",
"loudness_min": 123
}
],
"significant_loudness_min": 123
},
"audio_external_mic_boost": 123,
"audio_external_mic_volume": 123,
"audio_external_speaker_volume": 123,
"audio_internal_mic_aec_enabled": true,
"audio_internal_mic_boost": 123,
"audio_internal_mic_volume": 123,
"audio_internal_speaker_volume": 123,
"audio_min_echo_amplitude": 123,
"audio_playback_gain_percent": 123,
"audio_record": true,
"audio_supported": true,
"audio_use_external_mic": true,
"audio_use_external_speaker": true,
"audio_use_internal_speaker": true,
"bandwidth_reports_disabled": true,
"cloud_archive_days": 123,
"cloud_archive_upload_schedule": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"cloud_archive_upload_schedule_inverted": true,
"cloud_archive_upload_schedule_uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"device_mic_enabled": true,
"device_near_audio_silenced": true,
"device_speaker_enabled": true,
"firmware_dev_settings": {},
"frontendEqualizerHighShelf": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerLowShelf": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking1": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking2": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking3": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendNoiseSuppression": true,
"lastModified": 123,
"led_mode_blink_period_ms": 123,
"led_stealth_mode": true,
"lightweight_detection_disabled": true,
"live_license_invalid": true,
"max_event_duration_ms": 123,
"media_ttl_minutes": 123,
"on_demand_license_invalid": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storage_target_free_megabytes": 123,
"storage_target_free_space_permyriad": 123
},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}AudioGateway Webservice
Get audio gateway config
Get an audio gateway config
POST
/
api
/
audiogateway
/
getConfig
Get audio gateway config
curl --request POST \
--url https://api2.rhombussystems.com/api/audiogateway/getConfig \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/audiogateway/getConfig"
payload = { "audioGatewayUuid": "AAAAAAAAAAAAAAAAAAAAAA" }
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({audioGatewayUuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/audiogateway/getConfig', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/audiogateway/getConfig")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"audioGatewayUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"config": {
"ai_license_invalid": true,
"audio_aec_via_software": true,
"audio_ai_disabled": true,
"audio_analysis_enabled": true,
"audio_analysis_params": {
"expressions": [
{
"confidence_min": 123,
"expression": "<string>",
"loudness_min": 123
}
],
"significant_loudness_min": 123
},
"audio_external_mic_boost": 123,
"audio_external_mic_volume": 123,
"audio_external_speaker_volume": 123,
"audio_internal_mic_aec_enabled": true,
"audio_internal_mic_boost": 123,
"audio_internal_mic_volume": 123,
"audio_internal_speaker_volume": 123,
"audio_min_echo_amplitude": 123,
"audio_playback_gain_percent": 123,
"audio_record": true,
"audio_supported": true,
"audio_use_external_mic": true,
"audio_use_external_speaker": true,
"audio_use_internal_speaker": true,
"bandwidth_reports_disabled": true,
"cloud_archive_days": 123,
"cloud_archive_upload_schedule": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"cloud_archive_upload_schedule_inverted": true,
"cloud_archive_upload_schedule_uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"device_mic_enabled": true,
"device_near_audio_silenced": true,
"device_speaker_enabled": true,
"firmware_dev_settings": {},
"frontendEqualizerHighShelf": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerLowShelf": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking1": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking2": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendEqualizerPeaking3": {
"frequency": 123,
"gain": 123,
"q": 123
},
"frontendNoiseSuppression": true,
"lastModified": 123,
"led_mode_blink_period_ms": 123,
"led_stealth_mode": true,
"lightweight_detection_disabled": true,
"live_license_invalid": true,
"max_event_duration_ms": 123,
"media_ttl_minutes": 123,
"on_demand_license_invalid": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"storage_target_free_megabytes": 123,
"storage_target_free_space_permyriad": 123
},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to get configuration for an audio gateway.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on August 7, 2026
⌘I