cURL
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>" } ]
List all K8s secrets for an app. Values are always masked.
The access token received from the authorization server in the OAuth 2.0 flow.
Secrets listed successfully
User-facing name of the secret.
K8s resource name.
List of key names in this secret.
ISO timestamp when the secret was created.
Was this page helpful?