com.voximplant.apiexamples.GetCallHistoryExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apiclient Show documentation
Show all versions of apiclient Show documentation
Voximplant Java API client library. Voximplant is a cloud communications platform for business and developers
package com.voximplant.apiexamples;
import com.voximplant.apiclient.ClientException;
import com.voximplant.apiclient.request.GetCallHistoryRequest;
import com.voximplant.apiclient.response.GetCallHistoryResponse;
import com.voximplant.apiclient.VoximplantAPIClient;
import com.voximplant.apiclient.util.MultiArgument;
import java.util.Date;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Calendar;
import java.util.TimeZone;
import java.io.IOException;
/**
* Get the first call session history record with calls and record URLs
* from the 2020-02-25 00:00:00 UTC to the 2020-02-26 00:00:00 UTC.
*/
public class GetCallHistoryExample {
public static void main(String [] args) {
try {
VoximplantAPIClient client = new VoximplantAPIClient("/path/to/credentials.json");
Calendar fromDate = Calendar.getInstance(TimeZone.getTimeZone("Etc/UTC"));
fromDate.set(2020, 2, 25, 0, 0, 0);
Calendar toDate = Calendar.getInstance(TimeZone.getTimeZone("Etc/UTC"));
toDate.set(2020, 2, 26, 0, 0, 0);
GetCallHistoryResponse res = client.getCallHistory(new GetCallHistoryRequest()
.setFromDate(fromDate.getTime())
.setToDate(toDate.getTime())
.setCount(1)
.setWithCalls(true)
.setWithRecords(true)
);
System.out.println("OK");
} catch (IOException | ClientException e) {
e.printStackTrace();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy