Get schedule log
GET/v2/schedules/:scheduleId/log
Gets the schedule log as a JSON array containing information about up to a 1000 invocations of the schedule.
Request
Path Parameters
scheduleId string required
Schedule ID.
Example:asdLZtadYvn4mBZmmStatus 200
Response Headers
{
"data": [
{
"message": "Schedule invoked",
"level": "INFO",
"createdAt": "2019-03-26T12:28:00.370Z"
},
{
"message": "Cannot start Actor task \\\"iEvfA6pm6DWjRTGxS\\\": Provided input must be object, got \\\"string\\\" instead.",
"level": "ERROR",
"createdAt": "2019-03-26T12:30:00.325Z"
}
]
}
Schema
data object[] required
- message string requiredExample:
Schedule invoked - level string requiredExample:
INFO - createdAt string<date-time> requiredExample:
2019-03-26T12:28:00.370Z
- message string requiredExample:
Status 400
Bad request - invalid input parameters or request body.
{
"error": {
"type": "invalid-input",
"message": "Invalid input: The request body contains invalid data."
}
}
Schema
error object required
- type string requiredExample:
run-failed - message string requiredExample:
Actor run did not succeed (run ID: 55uatRrZib4xbZs, status: FAILED)
- type string requiredExample: