ARI: Add command to indicate progress to a channel

Adds an ARI command to send a progress indication to a channel.

DeveloperNote: A new ARI endpoint is available at `/channels/{channelId}/progress` to indicate progress to a channel.
This commit is contained in:
Sven Kube
2025-07-30 14:24:07 +02:00
committed by github-actions[bot]
parent dc8e3eeaaf
commit f0ac136a8b
6 changed files with 172 additions and 2 deletions

View File

@@ -772,6 +772,47 @@
}
]
},
{
"path": "/channels/{channelId}/progress",
"description": "Indicate progress on a channel",
"operations": [
{
"httpMethod": "POST",
"since": [
"22.6.0",
"21.11.0",
"20.16.0"
],
"summary": "Indicate progress on a channel.",
"nickname": "progress",
"responseClass": "void",
"parameters": [
{
"name": "channelId",
"description": "Channel's id",
"paramType": "path",
"required": true,
"allowMultiple": false,
"dataType": "string"
}
],
"errorResponses": [
{
"code": 404,
"reason": "Channel not found"
},
{
"code": 409,
"reason": "Channel not in a Stasis application"
},
{
"code": 412,
"reason": "Channel in invalid state"
}
]
}
]
},
{
"path": "/channels/{channelId}/dtmf",
"description": "Send DTMF to a channel",