Get Cube Schedule History
GET/org/:orgId/project/:projectId/cube/:cubeId/aggregates-creation/scheduler/history/jobId/:jobId
Get the history of the schedule with the specified ID.
Request
Path Parameters
orgId stringrequired
The Organization ID for which you want to delete a schedule.
projectId stringrequired
The Project ID for which you want to delete a schedule.
cubeId stringrequired
The Cube ID for which you want to delete a schedule.
jobId stringrequired
ID of the schedule that you want to delete.
Responses
- 200
- 401
- 404
- 500
Success.
- application/json
- Schema
- Example (from schema)
- Example
Schema
any
{
"response": {
"history": [
{
"executedAt": "2023-05-22T11:30:47.412504Z",
"id": "9b9ce2f2-b631-4d3b-8dc7-f75bd046f208",
"jobId": "7b1c5866-87d6-4db5-b4d4-ddc0c042fd31"
}
],
"job_id": "7b1c5866-87d6-4db5-b4d4-ddc0c042fd31"
},
"status": {
"i18n_message": "response.ok",
"message": "OK"
}
}
{
"response": {
"history": [
{
"executedAt": "2023-05-22T11:30:47.412504Z",
"id": "9b9ce2f2-b631-4d3b-8dc7-f75bd046f208",
"jobId": "7b1c5866-87d6-4db5-b4d4-ddc0c042fd31"
}
],
"job_id": "7b1c5866-87d6-4db5-b4d4-ddc0c042fd31"
},
"status": {
"i18n_message": "response.ok",
"message": "OK"
}
}
This error will occur if calling user does not have access right for the API.
This error will occur if the org identified by orgId does not exist.
A server error occurred. Check the logs for more details.
Loading...