Get scheduled task list
Gets the list of scheduled tasks in the project
Function GetScheduledTaskList(Val Project) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Project | --proj | String | ✔ | Project filepath |
Returns: Structure Of KeyAndValue - Task list
- Bash
- CMD/Bat
melezh GetScheduledTaskList \
--proj "/proj.melezh"
melezh GetScheduledTaskList ^
--proj "/proj.melezh"
Result
{
"data": [
{
"active": 1,
"cron": "0 7 10 * * * *",
"handler": "my-key",
"id": 1
}
],
"result": true
}