Skip to main content
GET
/
api
/
app
/
{app_id}
/
secrets
List all secrets for an app
curl --request GET \
  --url https://api.example.com/api/app/{app_id}/secrets \
  --header 'Authorization: Bearer <token>'
[
  {
    "secret_name": "<string>",
    "k8s_name": "<string>",
    "keys": [
      "<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

Response

Secrets listed successfully

secret_name
string
required

User-facing name of the secret.

k8s_name
string
required

K8s resource name.

keys
string[]

List of key names in this secret.

created_at
string | null

ISO timestamp when the secret was created.