cURL
curl --request GET \ --url https://api.ngrok.com/vault_secrets \ --header 'Authorization: Bearer <token>' \ --header 'ngrok-version: <ngrok-version>'
{ "secrets": [ { "id": "<string>", "uri": "<string>", "created_at": "<string>", "updated_at": "<string>", "name": "<string>", "description": "<string>", "metadata": "<string>", "created_by": { "id": "<string>", "uri": "<string>" }, "last_updated_by": { "id": "<string>", "uri": "<string>" }, "vault": { "id": "<string>", "uri": "<string>" } } ], "uri": "<string>", "next_page_uri": "<string>" }
List all Secrets owned by account
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The list of Secrets for this account
Show child attributes
identifier for Secret
URI of this Secret API resource
Timestamp when the Secret was created (RFC 3339 format)
Timestamp when the Secret was last updated (RFC 3339 format)
Name of secret
description of Secret
Arbitrary user-defined metadata for this Secret
Reference to who created this Secret
a resource identifier
a uri for locating a resource
Reference to the vault the secret is stored in
n/a
URI of the next page of results, or null if there is no next page
Was this page helpful?