Executes a specific dynamic report and returns the resulting data. Returns 404 if the report does not exist.
Request Headers
| Header | Value | Required | Description |
|---|---|---|---|
| ECI-ApiKey | string | Yes | Your API key. See Authentication. |
| Content-Type | application/json | Yes | All requests must specify JSON content type. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| reportId | integer (int32) | Required |
Responses
200
OK
The request succeeded and the response body contains the requested data.
Response Body Parameters
EdxQueryResultV202606
| Property | Description | Type | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| columns | EdxColumnV202606[] | |||||||||||||||||||||||||||||||
|
EdxColumnV202606 properties
|
||||||||||||||||||||||||||||||||
| queryTimeMs | integer (int64) | |||||||||||||||||||||||||||||||
| render | EdxRenderV202606 | |||||||||||||||||||||||||||||||
|
EdxRenderV202606 properties
|
||||||||||||||||||||||||||||||||
| rowCount | integer (int32) | |||||||||||||||||||||||||||||||
| rows | Rows, each an array of cell values aligned positionally to EnergyCap.DTO.V202606.EdxQueryResultDTO.Columns. | array[] | ||||||||||||||||||||||||||||||
| truncated | True when results were capped and more rows exist. | boolean | ||||||||||||||||||||||||||||||
Example Response
{ "columns": [
{ "dataType": "string", "description": "string", "displayFormat": "string", "name": "string", "relatedFields": [
{ "name": "string", "type": "string"
}
]
}
], "queryTimeMs": 1, "render": { "accumulate": false, "chartType": "string", "kind": "string", "series": [
"string"
], "title": "string", "xColumn": "string", "yColumns": [
"string"
]
}, "rowCount": 1, "rows": [
[
{}
]
], "truncated": false
}
404
Not Found
The requested resource was not found. Verify the ID or path is correct.