Official Plugins (Kuzzle v2.x)
Scheduler v1.x
2

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

create #

Creates a new scheduler engine on an index


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/scheduler/engine/:index
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "scheduler/engine",
  "action": "create",
  "index": "tenant-dana",
}

Kourou #

Copied to clipboard!
kourou scheduler/engine:create <index>

Response #

Returns an object containing the index name and the list of created collections.

Copied to clipboard!
{
  "requestId": "d16d5e8c-464a-4589-938f-fd84f46080b9",
  "status": 200,
  "error": null,
  "controller": "scheduler/engine",
  "action": "create",
  "collection": null,
  "index": null,
  "result": {
    "index": "tenant-dana",
    "collections": [
      "config",
      "scheduled-task-journal"
    ]
  }
}