summaryrefslogtreecommitdiff
path: root/rest-api
diff options
context:
space:
mode:
authorSeán C McCord <ulexus@gmail.com>2017-10-06 21:48:48 -0400
committerSeán C McCord <ulexus@gmail.com>2017-10-11 08:23:05 -0400
commite8bde6916ab0003e6737a320074b1c6ae1516db0 (patch)
tree6e08df9a01a8d0a5bfe3792730a79cf9051d9a78 /rest-api
parent1505c1bb09987b36c4c55d1ab6d95e57d0fede16 (diff)
ari/bridge: Add mute, dtmf suppression controls
Add bridge_features structure to bridge creation. Specifically, this implements mute and DTMF suppression, but others should be able to be easily added to the same structure. ASTERISK-27322 #close Reported by: Darren Sessions Sponsored by: AVOXI Change-Id: Id4002adfb65c9a8027ee9e1a5f477e0f01cf9d61
Diffstat (limited to 'rest-api')
-rw-r--r--rest-api/api-docs/bridges.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/rest-api/api-docs/bridges.json b/rest-api/api-docs/bridges.json
index 877fdf84d..cf8ee3156 100644
--- a/rest-api/api-docs/bridges.json
+++ b/rest-api/api-docs/bridges.json
@@ -169,6 +169,24 @@
"required": false,
"allowMultiple": false,
"dataType": "string"
+ },
+ {
+ "name": "absorbDTMF",
+ "description": "Absorb DTMF coming from this channel, preventing it to pass through to the bridge",
+ "paramType": "query",
+ "required": false,
+ "allowMultiple": false,
+ "dataType": "boolean",
+ "defaultValue": false
+ },
+ {
+ "name": "mute",
+ "description": "Mute audio from this channel, preventing it to pass through to the bridge",
+ "paramType": "query",
+ "required": false,
+ "allowMultiple": false,
+ "dataType": "boolean",
+ "defaultValue": false
}
],
"errorResponses": [