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

Documentation Index

Fetch the complete documentation index at: https://docs.nx1cloud.com/llms.txt

Use this file to discover all available pages before exploring further.

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 values revealed successfully

Detail view of a secret with actual (revealed) values.

secret_name
string
required

User-facing name of the secret.

k8s_name
string
required

K8s resource name.

data
SecretKeyValue · object[]

Key-value pairs with actual values.

created_at
string | null

ISO timestamp when the secret was created.