Updates the grid state of a specific dynamic report by its ID. This uses the AG Grid state format to save the current state of the grid for the report. If it is malformed, it will cause rendering issues when displaying the report in the app. 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, including the request body. |
Path Parameters
| Name | Description | Type | Required |
|---|---|---|---|
| reportId | integer (int32) | Required |
Request Body
DynamicReportGridStateV202607
| Property | Description | Type |
|---|---|---|
| gridState | Required (defined) | string |
Example Request Body
{ "gridState": "string"
}
Responses
200
OK
The request succeeded and the response body contains the requested data.
404
Not Found
The requested resource was not found. Verify the ID or path is correct.