Plaid
You can follow the following steps to build a connection with your Plaid account. If you need any helps to set up your integration, please contact us.
1. Go to the Resources page and click the Add Resource button.
2. In the "Select a data source" step, select Plaid under Apps.
3. In the "Configure the data source" step, enter the following information:
Environment:
the environment of your access token (production, development, or sandbox). See here to check your environment.
4. In the "Select the tables", choose tables that you want to connect. See here for more details on each table.
5. Click Finish Setup. You will see a
icon next to your Plaid resource. It may take a few minutes to several hours depending on the data size and the number of your tables. Once your APP's data is ready, you will receive a notification email.

To allow Acho to connect to your Mailchimp account, you have to acquire the client ID, an API key, and an access token. Here are the instructions about how to acquire it.

Go to the keys page and you will find the client id and your API Key. You can copy the API key from one of the following environments (Production, Development, and Sandbox) and paste it to Acho's configuration page.

You have to create a public token key first and then you can create an access token.
- curl --location --request POST 'https://sandbox.plaid.com/sandbox/public_token/create' \--header 'Content-Type: application/json;charset=UTF-16' \--data-raw '{"client_id": "<your-client-id>","secret": "<your-sandbox-api-key>","institution_id": "ins_43","initial_products": ["auth", "transactions"]}'
- Exchange public key for an access token: Make this API call described in plaid docs. The public token used in this request is the token returned in the response of the previous request. This request will return an
access_token
, which is the last field we need to generate for the config for this source!
Acho supports creating schedulers to retrieve the latest data from your Plaid account at a certain time interval. To see more details, you can visit here.
Last modified 9mo ago