Store secret credentials and tokens in your app
Use the Secret Store API to persist sensitive data, like authentication credentials.
The Secret Store API is a way to securely set, find, list, and delete persistent secrets used in Stripe Apps. These credentials, also known as secrets, are only accessible to your app and the users who own them.
Overview
The Secret Store API enables your app to:
- Securely store and retrieve authentication credentials
- Keep users authenticated with third-party services, even if they sign out of
stripe.
and sign in againcom - Securely pass secrets between your UI extension and backend
Caution
Stripe does not permit you to store sensitive personal data, personal account numbers such as credit card numbers, and other data within PCI Compliance using the Secret Store API.
Scopes
The secrets of an uploaded app are only accessible by other apps that you’ve uploaded. You can only publish one app on an account, so published apps can never share secrets. Requests made by third-party apps can’t ever access your app’s secrets.
Use scopes to further specify the accessibility of a given secret. A scope is a collection of secrets identified by its accessibility.
The Secret Store API supports the following scope types:
Scope type | Scope limits | Stores up to | Use for | Accessible to |
---|---|---|---|---|
account scope | There’s one account scope per app. Example: third-party API key | A maximum of 10 Secrets | Secrets that apply to all users of a Stripe account that installs your app | All Dashboard users of a Stripe account and the app’s backend, on a per-app basis |
user scope | Each user has one user scope per app. Example: OAuth access token | A maximum of 10 Secrets | Secrets that only apply to a specific user of a Stripe account | A specific Dashboard user of a Stripe account and the app’s backend, on a per-app basis |
The diagram below shows the secret scoping between the following:
- The Stripe account: “The Cactus Practice Stripe account”
- Two users sharing the same Stripe account: “User 1”, “User 2”
- Two different apps installed by the Stripe account: “Installed App A”, “Installed App B”
account
scoped secrets: “Foo API key” secret for App A, “Bar API key” for App Buser
scoped secrets: “OAuth access token”, “OAuth refresh token”
The scoped secrets of two different apps installed by the Cactus Practice Stripe account.
Expiration
If a secret becomes invalid at some point in the future, you can specify an expiration time by setting the optional expires_at parameter when you set a secret. This parameter takes in a Unix timestamp (the number of seconds elapsed since the Unix epoch).
After the expires_
date has passed, the secret is automatically deleted from the Secret Store API.
Expiration times can’t be in the past and can’t be more than 100 years in the future.
Set a secret
Add the
secret_
permission to your app:write Command Linestripe apps grant permission "secret_write" "Allows storing secrets between page reloads"
Set a secret by name and scope in the Secret Store API. You can use the following example code in your app’s UI extension or backend:
For more information, see the API reference documentation on setting a secret.
Find a secret
You can find a secret by name and scope in the Secret Store API. For example, use the following example code in your app’s UI extension or backend:
For more information, see Find a secret.
Delete a secret
To delete a secret by name and scope in the Secret Store API, you can use the following example code in your app’s UI extension or backend:
For more information, see Delete a secret.
List secrets
If you stored the maximum amount of secrets in an account
or user
scope and want to add another secret, you must delete at least 1 of the 10 secrets. To determine which secrets to delete, you can list all the secrets for a given scope.
To list the secrets of an account
or user
scope, you can use the following example code in your app’s UI extension or backend:
For more information, see List secrets.
Example apps
The following example apps demonstrate how to use the Secret Store API: