Skip to content
This repository was archived by the owner on Oct 31, 2021. It is now read-only.

Log and store Plaid specific data properly. #162

Open
3 tasks
elliotcourant opened this issue May 12, 2021 · 1 comment
Open
3 tasks

Log and store Plaid specific data properly. #162

elliotcourant opened this issue May 12, 2021 · 1 comment
Assignees
Labels

Comments

@elliotcourant
Copy link
Member

elliotcourant commented May 12, 2021

Access tokens and Item IDs are the core identifiers that map your users to their financial institutions. Store them securely and associate them with users of your application. Make sure, however, that these identifiers are never exposed client-side. Keep in mind that one user can create multiple Items if they have accounts with multiple financial institutions.

Ensure that the following identifiers are securely logged, as they will be needed when contacting Support about a specific request or callback.

  • link_session_id: Included in the onExit, onEvent, and onSuccess callback of a Link integration.
  • request_id: Included in all Plaid API responses.
  • account_id: Included in all successful Plaid API responses that relate to a specific Item or account.
@elliotcourant elliotcourant added Plaid Security Production Production environment issues. Logging labels May 12, 2021
@elliotcourant elliotcourant added this to the Public Availability milestone May 12, 2021
@elliotcourant elliotcourant self-assigned this May 12, 2021
@elliotcourant
Copy link
Member Author

For MVP access tokens will be stored in one of two places:

  • PostgreSQL as plaintext (though this is not what we will be using in production).
  • Vault

Right now stuff is just stored in postgresql on the plaid_link table and its stored in plaintext. This is fine for now and might be fine for people who decide to self-host the software (if they have their own Plaid credentials). But for our production environment we need to store this data securely and restrict access to it. Vault will be used in production to handle the access policies to this data, as well as the data's encryption.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant