Official Plugins (Kuzzle v2.x)
Workflows v0.x
2

This plugin is part of the Kuzzle Enterprise Plan. If you are interested, please contact us.

list #

Lists available tasks.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/workflows/task
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "workflows/task",
  "action": "list",
}

Kourou #

Copied to clipboard!
kourou workflows/task:list

Response #

Returns available tasks list.

Copied to clipboard!
{
  "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
          }
        }
      }
    ]
  }
}