Refresh all dashboard charts¶
Requests to refresh all charts in the specified data dashboard. Each chart is submitted independently and its respective return status needs to be checked.
POST https://moi.matrixorigin.cn/newmoi/data-dashboards/{dashboard_id}/refresh
Preparation before calling¶
Prepare a personal access token and target workspace ID that has access to the target workspace.
The example below uses:
$AI_STUDIO_API_KEY: The actual personal access token, passed through theX-API-KeyHeader.$WORKSPACE_ID: Target workspace ID, passed throughX-Workspace-IDHeader.$DASHBOARD_ID:dashboard_idto use, specifying the target resource via the request path.
Call example¶
curl -X POST "https://moi.matrixorigin.cn/newmoi/data-dashboards/$DASHBOARD_ID/refresh" \
-H "X-API-Key: $AI_STUDIO_API_KEY" \
-H "X-Workspace-ID: $WORKSPACE_ID"
Path parameters¶
Parameters |
Type |
Is it required |
Description |
|---|---|---|---|
|
string |
Yes |
Data dashboard ID. |
Successful response¶
When the request is successful, the data of this operation is returned. Just because the write or run request has been accepted does not mean that the subsequent processing has been completed; please confirm the result based on the return status or subsequent query.
{
"code": 202,
"data": {"runs": [{"chart_id": "chart-001", "execution_id": "exec-001", "status": "submitted"}]}
}
The response fields are as follows.
Field |
Type |
Description |
|---|---|---|
|
array |
The refresh submission results of each chart. |
|
string |
Chart ID. |
|
string |
Chart run ID; returned when submission is successful. |
|
string |
The submission status of this chart. |
|
string |
Reason for submission failure; returned upon failure. |
In this document, [] after a type denotes an array. In a field path, [] denotes each item in an array; for example, data.runs[].chart_id is the chart_id field of each item in the data.runs array.
Error response¶
codeinteger or string- Error code or status.
messagestring- Error message.
Error response example
{
"code": "ErrParamInvalid",
"msg": "请求参数无效",
"data": null
}