Persist and retrieve artifacts.
Summary: Get a value
Retrieves a value from the store by its key.
Parameters:
The key for the store operation.
Authentication token, can be used as an alternative to the Authorization header.
Responses:
Example Response (200):
{ "value": "SGVsbG8gV29ybGQ=" }
Invariants:
Summary: Set a value
Updates a key-value pair in the store (or creates it if it doesn't exist).
Parameters:
The key for the store operation.
Authentication token, can be used as an alternative to the Authorization header.
Request Body:
Content-Type: application/octet-stream
Binary data to store as the value.
Responses:
Invariants:
Summary: Query for key-value pairs
Queries for a range of key-value pairs.
Parameters:
Authentication token, can be used as an alternative to the Authorization header.
The key to start the query from (inclusive).
The key to end the query at (exclusive).
The maximum number of results to return.
Responses:
Example Response (200):
{ "results": [ { "key": "user:123", "value": "eyJuYW1lIjoiSm9obiJ9" }, { "key": "user:124", "value": "eyJuYW1lIjoiSmFuZSJ9" } ] }