cURL
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>" }
Reveal a secret’s actual decoded values.
The access token received from the authorization server in the OAuth 2.0 flow.
Secret values revealed successfully
Detail view of a secret with actual (revealed) values.
User-facing name of the secret.
K8s resource name.
Key-value pairs with actual values.
Show child attributes
ISO timestamp when the secret was created.
Was this page helpful?