Secrets REST endpoints
Generated2 endpoints under `/v1`.
Auto-generated from the MarBoba OpenAPI spec, published at
api.marboba.com/v1/openapi.json.
GET /secrets
List vault item metadata
Read-only metadata listing. Encrypted values are never returned. Requires admin scope (PAT only) — even secret names are sensitive enough to gate behind a human-issued credential.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
type | query | string | optional | |
appId | query | string | optional |
Responses
- 200 — Secret metadata sorted by name (case-insensitive). Body: object
- 401 — . Body: (no body)
- 403 — . Body: (no body)
Auth: BearerPAT
Operation ID: get_secrets
GET /secrets/{secretId}
Get a single secret’s metadata
Same admin-only access posture as the list endpoint.
Responses
- 200 — The requested secret’s metadata. Body: object
- 403 — . Body: (no body)
- 404 — . Body: (no body)
Auth: BearerPAT
Operation ID: get_secrets-secretid