Skip to main content
GET
/
api
/
app
/
{app_id}
/
secrets
/
{secret_name}
Get a secret (masked values)
curl --request GET \
  --url https://api.example.com/api/app/{app_id}/secrets/{secret_name} \
  --header 'Authorization: Bearer <token>'
{
  "secret_name": "<string>",
  "k8s_name": "<string>",
  "data": [
    {
      "key": "<string>",
      "value": "<string>"
    }
  ],
  "created_at": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

app_id
string<uuid>
required
secret_name
string
required

Response

Secret retrieved successfully

Detail view of a secret with masked values.

secret_name
string
required

User-facing name of the secret.

k8s_name
string
required

K8s resource name.

data
SecretKeyValue · object[]

Key-value pairs (values masked as '****').

created_at
string | null

ISO timestamp when the secret was created.