Get the history of the schedule with the specified ID.
GET/v1/public/catalogs/:catalogId/models/:modelId/aggregates-creation/scheduler/history/jobs/:jobId
Get the history of the schedule with the specified ID.
Request
Path Parameters
catalogId stringrequired
The Catalog ID for which you want to get schedule history.
modelId stringrequired
The Model ID for which you want to get schedule history.
jobId stringrequired
The Job ID for which you want to get schedule history.
Header Parameters
Authorization string
Responses
- 200
- 400
- 401
- 403
- 404
- 500
Success.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
history
object[]
required
id uuidrequired
jobId uuidrequired
executedAt date-timenullablerequired
jobId uuidrequired
{
"history": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"jobId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"executedAt": "2024-07-29T15:51:28.071Z"
}
],
"jobId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
Invalid request for example: Invalid parameters, missing parameters.
Unauthorized. This error will occur if calling user is not authenticated.
Forbidden. This error will occur if calling user does not have access right for the API.
Not found. The server cannot find the requested resource.
A server error occurred. Check the logs for more details.
Loading...