/ create,
/ collectionCreate a collection # Creates a new collection.
Examples # The following request creates a new collection called my-collection in the namespace my-namespace:
PUT /my-namespace:my-collection If creating a collection within the default namespace, it can be simplified as:
PUT /my-collection Request # PUT /[<namespace>:]<name> Path parameters # <namespace>
(Optional, string) The namespace which the collection belongs to. Namespace names must meet the following criteria: Lowercase only Cannot include \ /, *, ?
...
/ delete,
/ collectionDelete a collection # Delete a exists collection.
Examples # The following request deletes the collection called my-collection:
DELETE my-collection Request # PUT /[<namespace>:]<name> Path Parameters # <namespace>
(Optional, string) The namespace which the collection belongs to. <name>
(Required, string) Name of the collection you wish to create.
/ get,
/ collectionGet collection # Returns information about one or more collections.
Examples # The following request gets all the collections under the default namespace:
GET /default:* Request # GET /<target> Path Parameters # target
(Required, String) Comma-separated, names of the collections to get (wildcard supported)