1
0
Fork 0
arangodb/Documentation/Examples.ArangoDB/api-index-create-new-unique...

19 lines
369 B
Plaintext

> curl --data @- -X POST --dump - http://localhost:8529/_api/index?collection=102901008
{ "type" : "hash", "unique" : true, "fields" : [ "a", "b" ] }
HTTP/1.1 201 Created
content-type: application/json
{
"code": 201,
"fields": [
"a",
"b"
],
"id": "102901008/168054969",
"type": "hash",
"isNewlyCreated": true,
"unique": true,
"error": false
}