create #
Creates a new scheduler engine on an index
Query Syntax #
HTTP #
URL: http://kuzzle:7512/_/scheduler/engine/:index
Method: POST
Other protocols #
{
"controller": "scheduler/engine",
"action": "create",
"index": "tenant-dana",
}
Kourou #
kourou scheduler/engine:create <index>
Response #
Returns an object containing the index name and the list of created collections.
{
"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"
]
}
}
Edit this page on Github(opens new window)