Media Stream Stopped
This event may be sent to the url specified when sending a <StopStream>
verb, or if the stream is stopped for another reason such as the call being hungup.
Request Parameters
Property | Description |
---|---|
accountId | The user account associated with the call. |
answerTime | Time the call was answered, in ISO 8601 format. |
applicationId | The id of the application associated with the call. |
callId | The call id associated with the event. |
callUrl | The URL of the call associated with the event. |
cause | The reason the stream was stopped. This can be one of closed , connection-error , or error . |
direction | The direction of the call. Either inbound or outbound . The direction of a call never changes. |
enqueuedTime | (optional) If call queueing is enabled and this is an outbound call, time the call was queued, in ISO 8601 format. |
errorMessage | (optional) If the cause value was anything other than closed , this will contain details about what went wrong. |
eventTime | The approximate UTC date and time when the event was generated by the Bandwidth server, in ISO 8601 format. This may not be exactly the time of event execution. |
eventType | The event type, value is mediaStreamStopped |
from | The provided identifier of the caller: can be a phone number in E.164 format (e.g. +15555555555) even if privacy is set to true. |
privacy | (optional) Hide the calling number. The callerDisplayName field can be used to customize the displayed name. |
callerDisplayName | (optional) The caller display name to use when the call is created. May not exceed 256 characters nor contain control characters such as new lines. If privacy is true, only the following values are valid: Restricted , Anonymous , Private , or Unavailable . |
mediaStream | Details about the stream that was stopped |
mediaStream.destination | The destination URL to which the stream sent media |
mediaStream.duration | The duration of time the stream was active |
mediaStream.id | The unique id of this stream that was stopped |
mediaStream.name | The name of this stream that was stopped |
mediaStream.startTime | The approximate UTC date and time the stream was started |
mediaStream.tracks | The segments of the call that were sent in the stream, values will be one or both of inbound and outbound |
mediaStream.type | The type of stream that was sent. Currently the only supported type is WebSocket |
startTime | Time the call was started, in ISO 8601 format. |
to | The phone number that received the call, in E.164 format (e.g. +15555555555). |
tag | (optional) The tag specified on call creation. If no tag was specified or it was previously cleared, this field will not be present. |
Possible cause
Values
Value | Meaning |
---|---|
closed | The media stream was closed intentionally, either because a <StopStream> request was sent, or the call ended |
connection-error | There was a problem communicating with the destination supplied in the <StartStream> request. For example connecting to the websocket timed out, or the websocket closed abnormally, etc. |
error | There was an internal error other than a problem communicating with the destination |
Expected Response
HTTP/1.1 204
Examples
Media Stream Stopped Event with Enqueued Time
POST http://myapp.example/mediaStreamEvents
Content-Type: application/json
{
"accountId" : "55555555",
"answerTime" : "2022-06-30T18:55:02.080Z",
"applicationId" : "7fc9698a-b04a-468b-9e8f-91238c0d0086",
"callId" : "c-95ac912f-68aacdd7-4a8e-4223-a7fd-020e02fa6bf2",
"callUrl" : "https://voice.bandwidth.com/api/v2/accounts/55555555/calls/c-95ac912f-68aacdd7-4a8e-4223-a7fd-020e02fa6bf2",
"cause" : "closed",
"direction" : "outbound",
"enqueuedTime" : "2022-06-30T18:54:59.172Z",
"eventTime" : "2022-06-30T18:55:02.489Z",
"eventType" : "mediaStreamStopped",
"from" : "+15551112222",
"mediaStream" : {
"destination" : "wss://websocket.myapp.example",
"duration" : "PT1M52.217257456S",
"id" : "s-95ac90b3-e9cd80fa-fca7-4d12-9109-2990afe4d8c5",
"name" : "example_stream",
"startTime" : "2022-06-30T18:55:02.489Z",
"tracks" : ["inbound", "outbound"],
"type" : "WebSocket"
},
"startTime" : "2022-06-30T18:54:59.175Z",
"to" : "+15553334444"
}