list #
Lists available tasks.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/_/workflows/task
Method: GET
Other protocols #
{
"controller": "workflows/task",
"action": "list",
}
Kourou #
kourou workflows/task:list
Response #
Returns available tasks list.
{
"status": 200,
"error": null,
"action": "list",
"controller": "workflows/task",
"requestId": "<unique request identifier>",
"result": {
"tasks": [
{
"name": "alert-task",
"description": "Alert Task",
"args": {
"sendSms": {
"type": "boolean",
"description": "Also send a SMS",
"optional": false
}
}
}
]
}
}
Edit this page on Github(opens new window)