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
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
21
21
**end_time** | **str** | 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]
22
22
**duration** | **int** | 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]
23
23
**connect_duration** | **int** | 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]
24
+
**audio_stream_duration** | **int** | 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]
**subresource_uris** | **object** | The list of subresources for this Call. These include things like logs and recordings associated with the Call. | [optional]
Copy file name to clipboardExpand all lines: docs/DefaultApi.md
+23-9Lines changed: 23 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -310,7 +310,7 @@ Name | Type | Description | Notes
310
310
311
311
| Status code | Description | Response headers |
312
312
|-------------|-------------|------------------|
313
-
**200** | Successfuly created queue | - |
313
+
**201** | Successfuly created queue | - |
314
314
315
315
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
316
316
@@ -3583,7 +3583,7 @@ Name | Type | Description | Notes
3583
3583
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
print("The response of DefaultApi->list_call_recordings:\n")
3629
3631
pprint(api_response)
3630
3632
exceptExceptionas e:
@@ -3641,6 +3643,8 @@ Name | Type | Description | Notes
3641
3643
**account_id** | **str**| ID of the account |
3642
3644
**call_id** | **str**| String that uniquely identifies this call resource. |
3643
3645
**date_created** | **str**| Only show recordings created on the specified date, in the form *YYYY-MM-DD*. | [optional]
3646
+
**start_time** | **str**| Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss. | [optional]
3647
+
**end_time** | **str**| Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss. | [optional]
3644
3648
3645
3649
### Return type
3646
3650
@@ -3664,7 +3668,7 @@ Name | Type | Description | Notes
3664
3668
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
@@ -3701,6 +3705,7 @@ with freeclimb.ApiClient(configuration) as api_client:
3701
3705
# Create an instance of the API class
3702
3706
api_instance = freeclimb.DefaultApi(api_client)
3703
3707
account_id ='AC170e4c66d358aa1755931da0452561933d1b8fd5'# str | ID of the account
3708
+
used_audio_stream =False# bool | If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned (optional) (default to False)
3704
3709
active =False# bool | If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (optional) (default to False)
3705
3710
to ='to_example'# str | Only show Calls to this phone number. (optional)
3706
3711
var_from ='var_from_example'# str | Only show Calls from this phone number. (optional)
@@ -3714,7 +3719,7 @@ with freeclimb.ApiClient(configuration) as api_client:
**used_audio_stream** | **bool**| If usedAudioStream is set to true then all calls that have a audioStreamDuration > 0 will be returned | [optional][default to False]
3732
3738
**active** | **bool**| If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. | [optional][default to False]
3733
3739
**to** | **str**| Only show Calls to this phone number. | [optional]
3734
3740
**var_from** | **str**| Only show Calls from this phone number. | [optional]
@@ -3762,7 +3768,7 @@ Name | Type | Description | Notes
3762
3768
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
print("The response of DefaultApi->list_conference_recordings:\n")
3809
3817
pprint(api_response)
3810
3818
exceptExceptionas e:
@@ -3822,6 +3830,8 @@ Name | Type | Description | Notes
3822
3830
**conference_id** | **str**| Show only Recordings made during the conference with this ID. |
3823
3831
**call_id** | **str**| Show only Recordings made during the Call with this ID. | [optional]
3824
3832
**date_created** | **str**| Only show Recordings created on this date, formatted as *YYYY-MM-DD*. | [optional]
3833
+
**start_time** | **str**| Only show Recordings created at or after this time, given as YYYY-MM-DD hh:mm:ss. | [optional]
3834
+
**end_time** | **str**| Only show Recordings created at or before this time, given as YYYY-MM-DD hh:mm:ss. | [optional]
3825
3835
3826
3836
### Return type
3827
3837
@@ -4281,7 +4291,7 @@ Name | Type | Description | Notes
4281
4291
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
0 commit comments