Skip to main content

Get schedule

GET 

/v2/schedules/:scheduleId

Gets the schedule object with all details.

Request

Path Parameters

    scheduleId string required

    Schedule ID.


    Example: asdLZtadYvn4mBZmm

Status 200

Response Headers
    {
    "data": {
    "id": "asdLZtadYvn4mBZmm",
    "userId": "wRsJZtadYvn4mBZmm",
    "name": "my-schedule",
    "cronExpression": "* * * * *",
    "timezone": "UTC",
    "isEnabled": true,
    "isExclusive": true,
    "description": "Schedule of actor ...",
    "createdAt": "2019-12-12T07:34:14.202Z",
    "modifiedAt": "2019-12-20T06:33:11.202Z",
    "nextRunAt": "2019-04-12T07:34:10.202Z",
    "lastRunAt": "2019-04-12T07:33:10.202Z",
    "actions": [
    {
    "id": "c6KfSgoQzFhMk3etc",
    "type": "RUN_ACTOR",
    "actorId": "jF8GGEvbEg4Au3NLA",
    "runInput": {
    "body": "{\\n \"foo\": \"actor\"\\n}",
    "contentType": "application/json; charset=utf-8"
    },
    "runOptions": {
    "build": "latest",
    "timeoutSecs": 60,
    "memoryMbytes": 1024,
    "restartOnError": false
    }
    }
    ]
    }
    }