Stop all Audio Streams
Stop every active audio stream currently running on a call in a single request.
This endpoint stops all active streams attached to a call at once. It is useful when you want to tear down every forked audio pipeline before hanging up the call, or when switching the call into a new flow. Streams that have already stopped are not affected.
HTTP Request
DELETE
https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/Path Parameters:
- •
{auth_id}- Your account ID - •
{call_uuid}- UUID of the call
Response
Returns HTTP 204 No Content on success.
Example
cURL
curl -X DELETE 'https://api.vobiz.ai/api/v1/Account/{auth_id}/Call/{call_uuid}/Stream/' \
-H 'X-Auth-ID: {auth_id}' \
-H 'X-Auth-Token: {auth_token}'