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/DefaultApi.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2012,7 +2012,7 @@ Name | Type | Description | Notes
2012
2012
2013
2013
<aname="listCalls"></a>
2014
2014
# **listCalls**
2015
-
> CallList listCalls(active, to, from, callStatus, startTime, endTime, parentCallId)
2015
+
> CallList listCalls(active, to, from, status, startTime, endTime, parentCallId)
2016
2016
2017
2017
List Calls
2018
2018
@@ -2044,7 +2044,7 @@ public class Example {
2044
2044
2045
2045
String from ="from_example"; // String | Only show Calls from this phone number.
2046
2046
2047
-
CallStatuscallStatus=CallStatus.fromValue("queued"); // CallStatus | Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`.
2047
+
CallStatusstatus=CallStatus.fromValue("queued"); // CallStatus | Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`.
2048
2048
2049
2049
String startTime ="startTime_example"; // String | Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss.
2050
2050
@@ -2053,7 +2053,7 @@ public class Example {
2053
2053
String parentCallId ="parentCallId_example"; // String | Only show Calls spawned by the call with this ID.
2054
2054
2055
2055
try {
2056
-
CallList result = apiInstance.listCalls(active, to, from, callStatus, startTime, endTime, parentCallId);
2056
+
CallList result = apiInstance.listCalls(active, to, from, status, startTime, endTime, parentCallId);
2057
2057
System.out.println(result);
2058
2058
} catch (ApiException e) {
2059
2059
System.err.println("Exception when calling DefaultApi#listCalls");
@@ -2073,7 +2073,7 @@ Name | Type | Description | Notes
2073
2073
**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]
2074
2074
**to** | **String**| Only show Calls to this phone number. | [optional]
2075
2075
**from** | **String**| Only show Calls from this phone number. | [optional]
2076
-
**callStatus** | [**CallStatus**](.md)| Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. | [optional][enum: queued, ringing, inProgress, canceled, completed, failed, busy, noAnswer]
2076
+
**status** | [**CallStatus**](.md)| Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. | [optional][enum: queued, ringing, inProgress, canceled, completed, failed, busy, noAnswer]
2077
2077
**startTime** | **String**| Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss. | [optional]
2078
2078
**endTime** | **String**| Only show Calls that ended at or before this time, given as YYYY-MM- DD hh:mm:ss. | [optional]
2079
2079
**parentCallId** | **String**| Only show Calls spawned by the call with this ID. | [optional]
Copy file name to clipboardExpand all lines: openapi.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3031,7 +3031,7 @@
3031
3031
}
3032
3032
},
3033
3033
{
3034
-
"name": "callStatus",
3034
+
"name": "status",
3035
3035
"in": "query",
3036
3036
"description": "Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`.",
Copy file name to clipboardExpand all lines: src/main/java/com/github/freeclimbapi/DefaultApi.java
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -3828,7 +3828,7 @@ public okhttp3.Call listCallRecordingsAsync(String callId, String dateCreated, f
3828
3828
* @param active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (optional, default to false)
3829
3829
* @param to Only show Calls to this phone number. (optional)
3830
3830
* @param from Only show Calls from this phone number. (optional)
3831
-
* @param callStatus Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3831
+
* @param status Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3832
3832
* @param startTime Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss. (optional)
3833
3833
* @param endTime Only show Calls that ended at or before this time, given as YYYY-MM- DD hh:mm:ss. (optional)
3834
3834
* @param parentCallId Only show Calls spawned by the call with this ID. (optional)
@@ -3841,7 +3841,7 @@ public okhttp3.Call listCallRecordingsAsync(String callId, String dateCreated, f
3841
3841
<tr><td> 200 </td><td> Successful retrieved call list </td><td> - </td></tr>
* @param active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (optional, default to false)
3935
3935
* @param to Only show Calls to this phone number. (optional)
3936
3936
* @param from Only show Calls from this phone number. (optional)
3937
-
* @param callStatus Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3937
+
* @param status Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3938
3938
* @param startTime Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss. (optional)
3939
3939
* @param endTime Only show Calls that ended at or before this time, given as YYYY-MM- DD hh:mm:ss. (optional)
3940
3940
* @param parentCallId Only show Calls spawned by the call with this ID. (optional)
ApiResponse<CallList> localVarResp = listCallsWithHttpInfo(active, to, from, status, startTime, endTime, parentCallId);
3951
3951
returnlocalVarResp.getData();
3952
3952
}
3953
3953
@@ -3957,7 +3957,7 @@ public CallList listCalls(Boolean active, String to, String from, CallStatus cal
3957
3957
* @param active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (optional, default to false)
3958
3958
* @param to Only show Calls to this phone number. (optional)
3959
3959
* @param from Only show Calls from this phone number. (optional)
3960
-
* @param callStatus Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3960
+
* @param status Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3961
3961
* @param startTime Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss. (optional)
3962
3962
* @param endTime Only show Calls that ended at or before this time, given as YYYY-MM- DD hh:mm:ss. (optional)
3963
3963
* @param parentCallId Only show Calls spawned by the call with this ID. (optional)
@@ -3969,8 +3969,8 @@ public CallList listCalls(Boolean active, String to, String from, CallStatus cal
3969
3969
<tr><td> 200 </td><td> Successful retrieved call list </td><td> - </td></tr>
@@ -3981,7 +3981,7 @@ public ApiResponse<CallList> listCallsWithHttpInfo(Boolean active, String to, St
3981
3981
* @param active If active is set to true then all calls of the nature queued, ringing, inProgress are returned in the query. (optional, default to false)
3982
3982
* @param to Only show Calls to this phone number. (optional)
3983
3983
* @param from Only show Calls from this phone number. (optional)
3984
-
* @param callStatus Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3984
+
* @param status Only show Calls currently in this status. May be `queued`, `ringing`, `inProgress`, `canceled`, `completed`, `failed`, `busy`, or `noAnswer`. (optional)
3985
3985
* @param startTime Only show Calls that started at or after this time, given as YYYY-MM-DD hh:mm:ss. (optional)
3986
3986
* @param endTime Only show Calls that ended at or before this time, given as YYYY-MM- DD hh:mm:ss. (optional)
3987
3987
* @param parentCallId Only show Calls spawned by the call with this ID. (optional)
@@ -3994,9 +3994,9 @@ public ApiResponse<CallList> listCallsWithHttpInfo(Boolean active, String to, St
3994
3994
<tr><td> 200 </td><td> Successful retrieved call list </td><td> - </td></tr>
0 commit comments