Create a collection
Declare a collection of JSON documents addressed by key. This is the counterpart to facts: POST /v1/memory recalls by meaning, a collection recalls by key.
Create it explicitly when you need query. Writing to an unknown collection creates it implicitly, but with no indexes — and indexes cannot be added afterwards. If you will ever look items up by a field rather than by key, declare that field here, before the first write.
A collection is defined once for the project. Its ITEMS are per-scope, so the same collection holds a separate set of documents for the project, for each contact, and for each conversation.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
1-63 chars: lowercase letters, digits, - and _, starting with a letter or digit.
"orders"
Up to 2 fields to index for query. This is the only way to declare them — a collection created implicitly by its first write has none, and querying an unindexed field returns 400 field_not_indexed. Indexes cannot be added later, so declare them here before the first write.
260 <= x <= 63072000Response
Collection created.
A namespace of JSON documents addressed by key.
