post

Create an item

lock
{{protocol}}://{{url}}/{{version}}/items

Create an item. This item won't be attached to any other item, therefore unreachable using a traversal. Use its _key or _id to retrieve it with the routes GET /items/:_key or POST /query. To create an item attached to an existing one, use the route POST /items/existingItemKey/append.

Permissions: w

Authentication

Authentication inherited from the collection: Bearer .

Body

          {
  "type": "Task",
  "data": {
    "name": "My new task"
  }
}