Skip to main content

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: asdLZtadYvn4mBZmm

Status 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"
    }
    ]
    }