com.ringcentral.paths.restapi.account.activecalls.Index Maven / Gradle / Ivy
package com.ringcentral.paths.restapi.account.activecalls;
import com.ringcentral.RestClient;
import com.ringcentral.definitions.CallLogResponse;
import com.ringcentral.definitions.ListCompanyActiveCallsParameters;
public class Index {
public RestClient rc;
public com.ringcentral.paths.restapi.account.Index parent;
public Index(com.ringcentral.paths.restapi.account.Index parent) {
this.parent = parent;
this.rc = parent.rc;
}
public String path() {
return parent.path() + "/active-calls";
}
public String path(Boolean withParameter) {
return path();
}
/**
* Returns records of all calls that are in progress, ordered by start time in descending order.
* HTTP Method: get
* Endpoint: /restapi/{apiVersion}/account/{accountId}/active-calls
* Rate Limit Group: Heavy
* App Permission: ReadCallLog
* User Permission: ReadCallLog
*/
public CallLogResponse get(ListCompanyActiveCallsParameters queryParams) throws com.ringcentral.RestException, java.io.IOException {
okhttp3.ResponseBody rb = this.rc.get(this.path(), queryParams);
return com.ringcentral.Utils.gson.fromJson(rb.string(), CallLogResponse.class);
}
public CallLogResponse get() throws com.ringcentral.RestException, java.io.IOException {
return this.get(null);
}
}