All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest
Method | HTTP request | Description |
---|---|---|
reportGetReportFromCacheV1 | GET /1/module/report/getReportFromCache/{sReportgroupCacheID} | Retrieve report from cache |
open class func reportGetReportFromCacheV1(sReportgroupCacheID: String, completion: @escaping (_ data: CommonGetReportV1Response?, _ error: Error?) -> Void)
Retrieve report from cache
Retrieve a report that was previously generated and cached
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let sReportgroupCacheID = "sReportgroupCacheID_example" // String |
// Retrieve report from cache
ModuleReportAPI.reportGetReportFromCacheV1(sReportgroupCacheID: sReportgroupCacheID) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}
Name | Type | Description | Notes |
---|---|---|---|
sReportgroupCacheID | String |
- Content-Type: Not defined
- Accept: application/json, application/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/zip, text/html
[Back to top] [Back to API list] [Back to Model list] [Back to README]