Interface SelfRunReportApi
public interface SelfRunReportApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<GetRunReportResponse> runReport1(String reportName) Running A Report Example Requests: self/runreports/Client%20Details?R_officeId=1 self/runreports/Client%20Details?R_officeId=1&exportCSV=trueretrofit2.Call<GetRunReportResponse> runReport1(String reportName, Map<String, String> headers) Running A Report Example Requests: self/runreports/Client%20Details?R_officeId=1 self/runreports/Client%20Details?R_officeId=1&exportCSV=true
-
Method Details
-
runReport1
@GET("v1/self/runreports/{reportName}") retrofit2.Call<GetRunReportResponse> runReport1(@Path("reportName") String reportName) Running A Report Example Requests: self/runreports/Client%20Details?R_officeId=1 self/runreports/Client%20Details?R_officeId=1&exportCSV=true- Parameters:
reportName- reportName (required)- Returns:
- Call<GetRunReportResponse>
-
runReport1
@GET("v1/self/runreports/{reportName}") retrofit2.Call<GetRunReportResponse> runReport1(@Path("reportName") String reportName, @HeaderMap Map<String, String> headers) Running A Report Example Requests: self/runreports/Client%20Details?R_officeId=1 self/runreports/Client%20Details?R_officeId=1&exportCSV=true- Parameters:
reportName- reportName (required)- Returns:
- Call<GetRunReportResponse>
-