Store
The Store in Abyss Storage lets you store public content as key / value pairs.
Each entry is identified by a slug and can hold a string up to 4096 characters.
Use cases
- Expose a public configuration to your clients (feature flags, announcement banner…)
- Serve a small JSON consumed by a static page
- Store a value shared across multiple Application instances
Public access
A Store entry can be fetched without authentication:
GET https://storage-api.abyss-project.fr/api/application-store/public/:applicationId/entry/slug/:slug
Permissions
| Permission | Action |
|---|---|
STORAGE_STORE_READ | List entries |
STORAGE_STORE_CREATE | Create an entry |
STORAGE_STORE_UPDATE | Update an entry |
STORAGE_STORE_DELETE | Delete an entry |