mirror of https://gitee.com/bigwinds/arangodb
20 lines
660 B
Plaintext
20 lines
660 B
Plaintext
shell> curl -X POST --data-binary @- --dump - http://localhost:8529/_api/tasks/
|
|
{"name":"SampleTask","command":"(function(params) { require('internal').print(params); })(params)","params":{"foo":"bar","bar":"foo"},"period":2}
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"id" : "1373464022",
|
|
"name" : "SampleTask",
|
|
"type" : "periodic",
|
|
"period" : 2,
|
|
"created" : 1424079545.781696,
|
|
"command" : "(function(params) { require('internal').print(params); })(params)",
|
|
"database" : "_system",
|
|
"error" : false,
|
|
"code" : 200
|
|
}
|
|
shell> curl -X DELETE --data-binary @- --dump - http://localhost:8529/_api/tasks/1373464022
|
|
|