Skip to main content

Get scheduled task list

Gets the list of scheduled tasks in the project

Function GetScheduledTaskList(Val Project) Export

ParameterCLI optionTypeRequiredDescription
Project--projStringProject filepath

Returns: Structure Of KeyAndValue - Task list


melezh GetScheduledTaskList \
--proj "/proj.melezh"
Result
{
"data": [
{
"active": 1,
"cron": "0 7 10 * * * *",
"handler": "my-key",
"id": 1
}
],
"result": true
}