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