You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CallResult.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
23
23
**endTime** | **String** | End time of the Call (GMT) in RFC 1123 format (e.g., Mon, 15 Jun 2009 20:45:30 GMT). Empty if the Call did not complete successfully. | [optional]
24
24
**duration** | **Integer** | Total length of the Call in seconds. Measures time between startTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls. | [optional]
25
25
**connectDuration** | **Integer** | Length of time that the Call was connected in seconds. Measures time between connectTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls. | [optional]
26
+
**audioStreamDuration** | **Integer** | Length of time that the Call used the audio stream in seconds. This value is empty or zero when the Call did not use the audio stream. | [optional]
26
27
**direction** | **CallDirection** | | [optional]
27
28
**answeredBy** | **AnsweredBy** | | [optional]
28
29
**subresourceUris** | **Object** | The list of subresources for this Call. These include things like logs and recordings associated with the Call. | [optional]
**usedAudioStream**|**Boolean**|If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned | [optional] [default to false]
3229
3238
**active**|**Boolean**|If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. | [optional] [default to false]
3230
3239
**to**|**String**|Only show Calls to this phone number. | [optional]
3231
3240
**from**|**String**|Only show Calls from this phone number. | [optional]
@@ -3258,7 +3267,7 @@ Name | Type | Description | Notes
Copy file name to clipboardExpand all lines: openapi.json
+70-1Lines changed: 70 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3175,6 +3175,11 @@
3175
3175
"description": "Length of time that the Call was connected in seconds. Measures time between connectTime and endTime. This value is empty for busy, failed, unanswered or ongoing Calls.",
3176
3176
"nullable": true
3177
3177
},
3178
+
"audioStreamDuration": {
3179
+
"type": "integer",
3180
+
"description": "Length of time that the Call used the audio stream in seconds. This value is empty or zero when the Call did not use the audio stream.",
3181
+
"nullable": true
3182
+
},
3178
3183
"direction": {
3179
3184
"$ref": "#/components/schemas/CallDirection"
3180
3185
},
@@ -6003,6 +6008,16 @@
6003
6008
"summary": "List Calls",
6004
6009
"operationId": "list-calls",
6005
6010
"parameters": [
6011
+
{
6012
+
"name": "usedAudioStream",
6013
+
"in": "query",
6014
+
"description": "If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned ",
6015
+
"required": false,
6016
+
"schema": {
6017
+
"type": "boolean",
6018
+
"default": false
6019
+
}
6020
+
},
6006
6021
{
6007
6022
"name": "active",
6008
6023
"in": "query",
@@ -6145,6 +6160,24 @@
6145
6160
"schema": {
6146
6161
"type": "string"
6147
6162
}
6163
+
},
6164
+
{
6165
+
"name": "startTime",
6166
+
"in": "query",
6167
+
"description": "Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss.",
6168
+
"required": false,
6169
+
"schema": {
6170
+
"type": "string"
6171
+
}
6172
+
},
6173
+
{
6174
+
"name": "endTime",
6175
+
"in": "query",
6176
+
"description": "Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss.",
6177
+
"required": false,
6178
+
"schema": {
6179
+
"type": "string"
6180
+
}
6148
6181
}
6149
6182
],
6150
6183
"deprecated": false,
@@ -6619,6 +6652,24 @@
6619
6652
"schema": {
6620
6653
"type": "string"
6621
6654
}
6655
+
},
6656
+
{
6657
+
"name": "startTime",
6658
+
"in": "query",
6659
+
"description": "Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss.",
6660
+
"required": false,
6661
+
"schema": {
6662
+
"type": "string"
6663
+
}
6664
+
},
6665
+
{
6666
+
"name": "endTime",
6667
+
"in": "query",
6668
+
"description": "Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss.",
6669
+
"required": false,
6670
+
"schema": {
6671
+
"type": "string"
6672
+
}
6622
6673
}
6623
6674
],
6624
6675
"responses": {
@@ -6766,7 +6817,7 @@
6766
6817
},
6767
6818
"deprecated": false,
6768
6819
"responses": {
6769
-
"200": {
6820
+
"201": {
6770
6821
"description": "Successfuly created queue",
6771
6822
"content": {
6772
6823
"application/json": {
@@ -7057,6 +7108,24 @@
7057
7108
},
7058
7109
{
7059
7110
"$ref": "#/components/parameters/AccountId"
7111
+
},
7112
+
{
7113
+
"name": "startTime",
7114
+
"in": "query",
7115
+
"description": "Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss.",
7116
+
"required": false,
7117
+
"schema": {
7118
+
"type": "string"
7119
+
}
7120
+
},
7121
+
{
7122
+
"name": "endTime",
7123
+
"in": "query",
7124
+
"description": "Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss.",
0 commit comments