Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.26 KB

LogApi.md

File metadata and controls

56 lines (38 loc) · 1.26 KB

LogApi

All URIs are relative to https://127.0.0.1:8080/v1

Method HTTP request Description
appsAppCallsCallLogGet GET /apps/{app}/calls/{call}/log Get call logs

appsAppCallsCallLogGet

LogWrapper appsAppCallsCallLogGet(app, call)

Get call logs

Get call logs

Example

// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.LogApi;


LogApi apiInstance = new LogApi();
String app = "app_example"; // String | App Name
String call = "call_example"; // String | Call ID.
try {
    LogWrapper result = apiInstance.appsAppCallsCallLogGet(app, call);
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling LogApi#appsAppCallsCallLogGet");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
app String App Name
call String Call ID.

Return type

LogWrapper

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json