Create a worker schedule
$ handinger workers:schedules create
POST/api/workers/{workerId}/schedules
Schedule a worker instruction for a future or recurring run.
Create a worker schedule
handinger workers:schedules create \
--api-key 'My API Key' \
--worker-id t_org_123_w_01HZY2ZJQ8G7K42W2D7WF6V4GM \
--input x \
--when "{date: '2019-12-27T18:11:19.117Z', type: scheduled}"{
"id": "id",
"budget": "low",
"input": "input",
"nextRunAt": "2019-12-27T18:11:19.117Z",
"type": "scheduled"
}Returns Examples
{
"id": "id",
"budget": "low",
"input": "input",
"nextRunAt": "2019-12-27T18:11:19.117Z",
"type": "scheduled"
}