{"info":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","description":"<html><head></head><body><p>The <strong>Plaid API</strong> enables seamless integration with financial data, allowing developers to connect applications to users' bank accounts, perform transfers, and access account details.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"21079881","collectionId":"73c51b62-5ce6-4d32-936b-427d372586b1","publishedId":"2sAYBUDsK9","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-11-24T20:48:34.000Z"},"item":[{"name":"Introduction","item":[{"name":"API protocols and headers","item":[],"id":"7efd3bdf-5545-4dd1-8bca-b3228e26303a","description":"<p><strong>The Plaid API</strong> communicates using JSON over HTTP. You send data with <strong>POST requests</strong> and receive responses in <strong>JSON format</strong>. If there’s an error, the response body will show an <code>error_code</code> and <code>error_type</code>. It’s best to check these rather than just relying on the HTTP status code. Most responses come in standard JSON, though some may return binary data.</p>\n<p>To keep data secure, the API uses <strong>HTTPS with TLS 1.2 or higher</strong> (older TLS versions aren’t supported). Ensure your client uses an updated root certificate bundle for TLS verification, and avoid using certificate pinning.</p>\n<h3 id=\"when-making-requests\"><strong>When making requests:</strong></h3>\n<ul>\n<li><p>Set the <code>Content-Type</code> to application/json.</p>\n</li>\n<li><p>Make sure the request body is valid JSON.</p>\n</li>\n<li><p>Include your <code>client_id</code> and <code>secret</code> for authentication as all Plaid API require this.</p>\n</li>\n</ul>\n<p>Every response includes a request_id, which appears in the body or headers (for binary responses, like <code>/asset_report/pdf/get</code>).</p>\n","_postman_id":"7efd3bdf-5545-4dd1-8bca-b3228e26303a","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"API host","item":[],"id":"1e67fb1f-0ce1-4e7f-aad7-49e8a618c75d","description":"<p><strong>Plaid</strong> has two environments: Sandbox and Production. Items cannot be moved between environments. The Sandbox environment supports only test Items. You can <a href=\"https://dashboard.plaid.com/overview/production\">request Production API access</a> via the Dashboard.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">https://sandbox.plaid.com (Sandbox)\nhttps://production.plaid.com (Production)\n\n</code></pre>\n<p>Always Include your <code>client_id</code> and <code>secret</code> as part of every request for authentication.</p>\n","_postman_id":"1e67fb1f-0ce1-4e7f-aad7-49e8a618c75d","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Storing API data","item":[],"id":"588f0c4f-d064-43a6-9997-359d8f5e5456","description":"<p>Any token returned by the API is sensitive and should be stored securely. Except for the <code>public_token</code> and <code>link_token</code>, all Plaid tokens are long-lasting and should never be exposed on the client side. Consumer data obtained from the Plaid API is sensitive information and should be managed accordingly. For guidance and best practices on how to store and handle sensitive data, see the <a href=\"https://ofdss.org/#documents\">Open Finance Security Data Standard</a>.</p>\n<p>Identifiers used by the Plaid API that do not contain consumer data and are not keys or tokens are designed for usage in less sensitive contexts. The most common of these identifiers are the <code>account_id</code>, <code>item_id</code>, <code>link_session_id</code>, and <code>request_id</code>. These identifiers are commonly used for logging and debugging purposes.</p>\n","_postman_id":"588f0c4f-d064-43a6-9997-359d8f5e5456","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"API field formats","item":[],"id":"22524684-5609-481c-9b61-d48081b67e90","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Notes</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>String</td>\n<td>Many string fields are returned exactly as provided by the financial institution, without maximum length limits or standardized formats.</td>\n<td>280 characters is typically adequate for storage, but Plaid does not guarantee this as the maximum.</td>\n</tr>\n<tr>\n<td>Numbers and Money</td>\n<td>Plaid returns all currency values as decimal values in the currency's standard unit (e.g., dollars) rather than as integers.</td>\n<td>Money values can occasionally have more than two decimal places, particularly when reporting values like crypto.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"22524684-5609-481c-9b61-d48081b67e90","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"OpenAPI definition file","item":[],"id":"da9f4948-0c9d-4567-a5db-7a7cf0dc679b","description":"<p>OpenAPI is a standard format for describing RESTful APIs that allows those APIs to be integrated with tools for a wide variety of applications, including testing, client library generation, IDE integration, and more. The Plaid API is specified in our <a href=\"https://github.com/plaid/plaid-openapi\">Plaid OpenAPI GitHub repo</a>.</p>\n","_postman_id":"da9f4948-0c9d-4567-a5db-7a7cf0dc679b","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Postman collection","item":[],"id":"57077924-fad6-4f1d-a04d-8c32015dc491","description":"<p>The <a href=\"https://github.com/plaid/plaid-postman\">Postman collection</a> is a convenient tool for exploring Plaid API endpoints without writing code. The Postman collection provides pre-formatted requests for almost all of Plaid's API endpoints. All you have to do is fill in your API keys and any arguments. To get started, check out the <a href=\"https://github.com/plaid/plaid-postman\">Plaid Postman Collection Quickstart</a> on GitHub.EndFragment</p>\n","_postman_id":"57077924-fad6-4f1d-a04d-8c32015dc491","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Client libraries","item":[],"id":"cf769996-8b7b-4e38-aad7-288388b34e11","description":"<p>See the <a href=\"https://plaid.com/docs/api/libraries/\">client libraries</a> page for more information on Plaid's client libraries.</p>\n","_postman_id":"cf769996-8b7b-4e38-aad7-288388b34e11","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}}],"id":"fe5ea355-4cc7-4f1f-9cf0-4fb099f9c89c","description":"<p><strong>Plaid API</strong> provides tools for securely connecting users' bank accounts and financial data to applications. It enables developers to retrieve a wide range of financial information, which can be used in apps for personal finance, banking, lending, investment, and payment services. To integrate the <strong>Plaid API</strong> endpoints into your projects, you must <a href=\"https://dashboard.plaid.com/signin?redirect=%2F\">create an account</a> on the Plaid Dashboard. Once you’ve sucessfully signup, you’ll be provided a live <strong><code>client_id</code></strong> and <strong><code>secret key</code></strong> to access the <strong>Plaid API.</strong></p>\n<h3 id=\"to-signup-on-the-plaid-follow-these-steps\"><strong>To signup on the Plaid, follow these steps:</strong></h3>\n<ul>\n<li><p>Create an account with this <a href=\"https://dashboard.plaid.com/signin?redirect=%2Foverview\">link</a>.</p>\n</li>\n<li><p>Click on <strong>Sign up.</strong></p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/d2d2f598-82fc-4776-9df6-12753e2ff4d8/U2NyZWVuc2hvdCAoNzU3KS5wbmc=\" />\n\n<ul>\n<li>Select one of the three boxes and click on the <strong>Continue</strong> button.</li>\n</ul>\n<img src=\"https://content.pstmn.io/9fc21d78-900e-40e3-80e0-65b8a34d18d3/U2NyZWVuc2hvdCAoNzYwKS5wbmc=\" />\n\n<ul>\n<li>You will be redirected to your <strong>Dashboard</strong>.</li>\n</ul>\n<img src=\"https://content.pstmn.io/d7044148-b793-401b-992d-c11575b360e6/U2NyZWVuc2hvdCAoNzYxKS5wbmc=\" />\n\n<ul>\n<li><p><strong>Verify</strong> your account via the email sent to you.</p>\n</li>\n<li><p>Click on <strong>Developers,</strong> from the dropdown click on <strong>Keys.</strong></p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/54e968bc-8c3f-4eca-bb2e-2e115700cd68/U2NyZWVuc2hvdCAoNzYyKS5wbmc=\" />\n\n<ul>\n<li>Click on the <strong>Set up two-factor authentication button</strong> to be able to access your client_id and secret.</li>\n</ul>\n<img src=\"https://content.pstmn.io/ddde8a8e-36b0-4b51-8349-948c835b2fc8/a2V5LmpwZw==\" />\n\n<ul>\n<li><p>Verify your email by inputting the <strong>Verification code</strong> sent to your mail.</p>\n</li>\n<li><p>Click on <strong>Set up two authentication factor button.</strong></p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/888e6e64-b657-4490-94e8-a7a7c5508b28/U2NyZWVuc2hvdCAoNzY0KS5wbmc=\" />\n\n<ul>\n<li>Click on the <strong>Authenticator app,</strong> scan the QR code, enter your passcode and click register.</li>\n</ul>\n<img src=\"https://content.pstmn.io/ebaf943d-2a16-44e8-9d9e-2b0d0db89d94/U2NyZWVuc2hvdCAoNzY1KS5wbmc=\" />\n\n<ul>\n<li>On the dashboard, click on <strong>Keys,</strong> and you will see your <code>client_id</code> and <code>secret</code> key in the boxes.</li>\n</ul>\n<img src=\"https://content.pstmn.io/99bcf334-5d6c-41a4-b864-321bdd1e7cac/Y2xpZW50LmpwZw==\" />","_postman_id":"fe5ea355-4cc7-4f1f-9cf0-4fb099f9c89c","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Status Code","item":[],"id":"da34bde3-7745-4daf-9b43-02897b7752e1","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>OK</td>\n<td>The request was successful</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Transactional Error</td>\n<td>When transaction data was updated during pagination</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Item Errors</td>\n<td>The user did not grant necessary permissions for their account</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Institutional Error</td>\n<td>The financial institution indicated that the credentials provided were invalid.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Transfer Errors</td>\n<td>Attempted transfer exceeded the account's daily transfer or single transfer limits.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Income Errors</td>\n<td>The requested income verification document was not found.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Sandbox Errors</td>\n<td>A sandbox operation could not be performed because a product has not been enabled on the Sandbox Item.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>API Errors</td>\n<td>Plaid was unable to process the request</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Asset Errors</td>\n<td>If tems in the Asset Report was not initialized with the Assets product</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Payment Errors</td>\n<td>Errors specific to the Payment Initiation product</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Virtual Account(UK/EU) Errors</td>\n<td>Insufficient funds to complete the transaction.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Invalid Request Errors</td>\n<td>The request uses fields that are not compatible with the API version being used.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>ReCAPTCHA Errors</td>\n<td>Request was flagged by Plaid's fraud system, and requires additional verification to ensure they are not a bot.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>OAuth Errors</td>\n<td>An incorrect OAuth nonce was supplied when re-initializing Link.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Rate Limit Errors</td>\n<td>Occurs when the rate limit for a particular endpoint has been exceeded</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"da34bde3-7745-4daf-9b43-02897b7752e1","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Rate Limit","item":[],"id":"aadb6d5b-945d-47d8-8341-5142fc59b5d7","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint</th>\n<th>Max requests per Item</th>\n<th>Max requests per client</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>/accounts/balance/get</code></td>\n<td>5 per minute</td>\n<td>1,200 per minute</td>\n</tr>\n<tr>\n<td><code>/accounts/get</code></td>\n<td>15 per minute</td>\n<td>15,000 per minute</td>\n</tr>\n<tr>\n<td><code>/asset_report/create</code></td>\n<td>5 per minute</td>\n<td>50 per minute</td>\n</tr>\n<tr>\n<td><code>/asset_report/get</code></td>\n<td>15 per minute (per asset report)</td>\n<td>1,000 per minute</td>\n</tr>\n<tr>\n<td><code>/asset_report/pdf/get</code></td>\n<td>15 per minute (per asset report)</td>\n<td>50 per minute</td>\n</tr>\n<tr>\n<td><code>/asset_report/refresh</code></td>\n<td>5 per minute (per asset report)</td>\n<td>50 per minute</td>\n</tr>\n<tr>\n<td><code>/auth/get</code></td>\n<td>15 per minute</td>\n<td>12,000 per minute</td>\n</tr>\n<tr>\n<td><code>/identity/get</code></td>\n<td>15 per minute</td>\n<td>2,000 per minute</td>\n</tr>\n<tr>\n<td><code>/identity_verification/create</code></td>\n<td>N/A</td>\n<td>200 per minute</td>\n</tr>\n<tr>\n<td><code>/identity_verification/get</code></td>\n<td>N/A</td>\n<td>500 per minute</td>\n</tr>\n<tr>\n<td><code>/identity_verification/list</code></td>\n<td>N/A</td>\n<td>400 per minute</td>\n</tr>\n<tr>\n<td><code>/identity_verification/retry</code></td>\n<td>N/A</td>\n<td>200 per minute</td>\n</tr>\n<tr>\n<td><code>/institutions/get</code></td>\n<td>N/A</td>\n<td>50 per minute</td>\n</tr>\n<tr>\n<td><code>/institutions/get_by_id</code></td>\n<td>N/A</td>\n<td>400 per minute</td>\n</tr>\n<tr>\n<td><code>/item/get</code></td>\n<td>15 per minute</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><code>/item/remove</code></td>\n<td>30 per minute</td>\n<td>2,000 per minute</td>\n</tr>\n<tr>\n<td><code>/signal/evaluate</code></td>\n<td>70 per hour, 10 per transaction per hour</td>\n<td>20 per second</td>\n</tr>\n<tr>\n<td><code>/signal/decision/report</code></td>\n<td>N/A</td>\n<td>4,000 per minute</td>\n</tr>\n<tr>\n<td><code>/signal/prepare</code></td>\n<td>N/A</td>\n<td>2,000 per minute</td>\n</tr>\n<tr>\n<td><code>/signal/return/report</code></td>\n<td>N/A</td>\n<td>4,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transactions/enrich</code></td>\n<td>N/A</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><code>/transactions/get</code></td>\n<td>30 per minute</td>\n<td>20,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transactions/recurring/get</code></td>\n<td>20 per minute</td>\n<td>1,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transactions/refresh</code></td>\n<td>2 per minute</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><code>/transactions/sync</code></td>\n<td>50 per minute</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/authorization/create</code></td>\n<td>100 per hour</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/cancel</code></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/create</code></td>\n<td>N/A</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/event/sync</code></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/intent/create</code></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/migrate_account</code></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/recurring/cancel</code></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/recurring/create</code></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/refund/cancel</code></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><code>/transfer/refund/create</code></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/recipient/create</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/recipient/get</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/recipient/list</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/payment/create</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/payment/get</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/payment/list</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/payment/reverse</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/consent/create</code></td>\n<td>N/A</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/consent/get</code></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/consent/revoke</code></td>\n<td>N/A</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><code>/payment_initiation/consent/payment/execute</code></td>\n<td>N/A</td>\n<td>100 per minute (5 per consent)</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"aadb6d5b-945d-47d8-8341-5142fc59b5d7","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Create public token","item":[{"name":"Create a test Item","id":"fc4a12d2-f3a3-4f4f-83d7-6de4925adf39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"institution_id\": \"ins_127989\",\r\n    \"initial_products\": [\"assets\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/sandbox/public_token/create","description":"<p>This endpoint in Plaid is used to generate a public_token for an existing item. The generated <code>public_token</code> is temporary and expires after 30 minutes.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>institutional_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The ID of the institution the Item will be associated with</td>\n</tr>\n<tr>\n<td>initial_products</td>\n<td>string</td>\n<td>Yes</td>\n<td>The products to initially pull for the Item</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>No</td>\n<td>An optional set of options to be used when configuring the Item</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["sandbox","public_token","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0c552241-91b2-4aca-8d2f-e2f97362399f","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"institution_id\": \"ins_127989\",\r\n    \"initial_products\": [\"assets\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/sandbox/public_token/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 19 Nov 2024 15:40:20 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"124"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"public_token\": \"\",\n    \"request_id\": \"lteMxPAP8Cy71o2\"\n}"}],"_postman_id":"fc4a12d2-f3a3-4f4f-83d7-6de4925adf39"}],"id":"7b77d6e6-a8c1-4b5f-8af6-61e18d8447a6","description":"<p>You need to create a valid <code>public_token</code> for an arbitrary institution ID, initial products, and test credentials. After then, you can exchange the public token <a href=\"https://plaid.com/docs/api/items/#itempublic_tokenexchange\"><code>/item/public_token/exchange </code></a> for an <code>access_token</code>and perform all API actions.</p>\n<h3 id=\"to-get-your-public-token\">To get your public token:</h3>\n<ul>\n<li>Go to your <a href=\"https://dashboard.plaid.com/overview\">Plaid dashboard.</a></li>\n</ul>\n<img src=\"https://content.pstmn.io/2cafa92a-8aad-46e5-b51c-9e192d3cce66/U2NyZWVuc2hvdCAoNzYxKS5wbmc=\" />\n\n<ul>\n<li><p>Click on <strong>Activity.</strong></p>\n</li>\n<li><p>From the dropdown, click on <strong>Status.</strong></p>\n</li>\n<li><p>Click on <strong>Set up two authentication factor button.</strong></p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/e3b3681e-702e-4ba4-b346-4b5bbd0b47be/c3RhdHVzLmpwZw==\" />\n\n<ul>\n<li><p>Enter the V<strong>erification code</strong> sent to your email.</p>\n</li>\n<li><p>Click on the <strong>Authenticator app,</strong> scan the QR code, enter your passcode and click register.</p>\n</li>\n</ul>\n<img src=\"https://content.pstmn.io/08803642-a5aa-47b1-8267-b14384689740/U2NyZWVuc2hvdCAoNzY1KS5wbmc=\" />\n\n<ul>\n<li>You will be redirected to the <strong>Status page</strong> where you can see all institutions you can use to create your <code>public_token</code>.</li>\n</ul>\n<img src=\"https://content.pstmn.io/1b0c687b-3647-420e-a530-6a64945ea2d3/U2NyZWVuc2hvdCAoNzY5KS5wbmc=\" />","_postman_id":"7b77d6e6-a8c1-4b5f-8af6-61e18d8447a6","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Exchange a public token for an access token","item":[{"name":"Public token for an access token","id":"b3beae0d-fb17-4e4e-ac6d-640315dd6073","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"public_token\": \"{{public_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/public_token/exchange","description":"<p>This endpoint is used to exchange a <strong>public token</strong> for a <strong>permanent access token</strong>. This is used in securely linking a financial institution account to your application.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>public_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your public_token, obtained from the /sandbox/item/public_token/create</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["item","public_token","exchange"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1978da6d-ffb2-4037-ac4f-757ec9a5db04","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"public_token\": \"{{public_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/public_token/exchange"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 19 Nov 2024 15:42:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"165"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"\",\n    \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n    \"request_id\": \"ptqW74H7XlOzKdW\"\n}"}],"_postman_id":"b3beae0d-fb17-4e4e-ac6d-640315dd6073"}],"id":"2495ebc1-996d-4757-a9aa-cc6f86dde658","description":"<p>Exchange a <code>public_token</code> for an API <code>access_token</code>. The public token expires after 30 minutes, while the access_token do not expire. It can only be revoke by calling item/remove. The response also includes an <code>item_id</code> that should be stored with the <code>access_token</code>. The <code>item_id</code> is used to identify an Item in a webhook.</p>\n","_postman_id":"2495ebc1-996d-4757-a9aa-cc6f86dde658","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Auth","item":[{"name":"Retrieve auth data","id":"1f79969e-1cd8-4b5f-9d42-0decb83c15ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/get","description":"<p>The /auth/get endpoint returns the bank account and bank identification numbers (such as routing numbers, for US accounts) associated with an Item's checking and savings accounts, along with high-level account data and balances when available.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>No</td>\n<td>An optional object to filter /auth/get results.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","name":"Auth","type":"folder"}},"urlObject":{"path":["auth","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d6736449-cb5f-4042-863a-bf194c6e5aa7","name":"Retrieve auth data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 19 Nov 2024 19:47:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1588"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n            \"balances\": {\n                \"available\": 100,\n                \"current\": 110,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"persistent_account_id\": \"8cfb8beb89b774ee43b090625f0d61d0814322b43bff984eaf60386e\",\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"balances\": {\n                \"available\": 200,\n                \"current\": 210,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"persistent_account_id\": \"211a4e5d8361a3afb7a3886362198c7306e00a313b5aa944c20d34b6\",\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 1000,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"persistent_account_id\": \"2a01484e1b5ef0b54fbcb89658b2764529bbec94a16f7b95481280a7\",\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vV1v749A4rHAyWy5mxGMtNkNq9pal7fq7A4XQ\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 410,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 2000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"RgEq4rXoreI8pXpvB9njCqVqvxBJQRHa13rGg\",\n            \"balances\": {\n                \"available\": 43200,\n                \"current\": 43200,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6WVp1zNdzwuXlglmeWMETRjR6GN8Egi8ALMxR\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 320.76,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"XnmxDaEBaNHV8o8zj9aDCXdXybaBrZiblqzxW\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 23631.9805,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"DaNJ9MjVMrFXVGV9DqozTP3PJErNyGC3px9Xg\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 65262,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"8G5g83Vq3xCZLDLpvb71hy5yGP3rjnuWEj4rn\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 56302.06,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"E4PJg1Ev1zUJ767lb3B1tPvP9DMJZWC4dJvEB\",\n            \"balances\": {\n                \"available\": 6009,\n                \"current\": 6009,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"WGb3edgzdoCJ8p8gByZVtbzbgvQEWGt6aKA49\",\n            \"balances\": {\n                \"available\": 12060,\n                \"current\": 12060,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"A3dJvebpelcE5B5VyDxkcZbZ53kBAWF9eEKow\",\n            \"balances\": {\n                \"available\": 4980,\n                \"current\": 5020,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 10000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        }\n    ],\n    \"item\": {\n        \"available_products\": [\n            \"assets\",\n            \"balance\",\n            \"signal\",\n            \"identity\",\n            \"identity_match\",\n            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n        \"products\": [\n            \"assets\",\n            \"auth\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"numbers\": {\n        \"ach\": [\n            {\n                \"account\": \"1111222233330000\",\n                \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n                \"routing\": \"011401533\",\n                \"wire_routing\": \"021000021\"\n            },\n            {\n                \"account\": \"1111222233331111\",\n                \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n                \"routing\": \"011401533\",\n                \"wire_routing\": \"021000021\"\n            }\n        ],\n        \"bacs\": [],\n        \"eft\": [],\n        \"international\": []\n    },\n    \"request_id\": \"KUWshs58vg6XgRd\"\n}"}],"_postman_id":"1f79969e-1cd8-4b5f-9d42-0decb83c15ce"},{"name":"List bank transfer events","id":"d13157ff-225f-48b3-8042-93bdd2c189fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\r\n{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\r\n    \"start_date\": \"2024-11-19T14:30:00+01:00\",\r\n   \"end_date\": \"2024-11-26T14:30:00+01:00\",\r\n   \"bank_transfer_id\": \"460cbe92-2dcc-8eae-5ad6-b37d0ec90fd9\",\r\n   \"bank_transfer_type\": \"credit\",\r\n   \"event_types\": [\"pending\"],\r\n   \"count\": 1,\r\n   \"offset\": 0,\r\n   \"direction\": \"outbound\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/bank_transfer/event/list","description":"<p>This endpoint is used to get a list of Plaid-initiated ACH or bank transfer events based on specified filter criteria. This endpoint can be used to fetch status updates on ACH micro-deposits.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The start datetime of bank transfers to list.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The end datetime of bank transfers to list.</td>\n</tr>\n<tr>\n<td>bank_transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a bank transfer.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The account ID to get events for all transactions to/from an account.</td>\n</tr>\n<tr>\n<td>bank_transfer_type</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of bank transfer. This will be either debit or credit.</td>\n</tr>\n<tr>\n<td>event_type</td>\n<td>string</td>\n<td>Yes</td>\n<td>Filter events by event type.  <br />Possible values: pending, cancelled, failed, posted, reversed</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of bank transfer events to return.</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The offset into the list of bank transfer events</td>\n</tr>\n<tr>\n<td>direction</td>\n<td>string</td>\n<td>Yes</td>\n<td>Indicates the direction of the transfer: outbound, inbound</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","name":"Auth","type":"folder"}},"urlObject":{"path":["bank_transfer","event","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0f201be4-8486-4a50-b0d4-f218b6be141e","name":"List bank transfer events","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"\r\n{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\r\n    \"start_date\": \"2024-11-19T14:30:00+01:00\",\r\n   \"end_date\": \"2024-11-26T14:30:00+01:00\",\r\n   \"bank_transfer_id\": \"460cbe92-2dcc-8eae-5ad6-b37d0ec90fd9\",\r\n   \"bank_transfer_type\": \"credit\",\r\n   \"event_types\": [\"pending\"],\r\n   \"count\": 1,\r\n   \"offset\": 0,\r\n   \"direction\": \"outbound\"\r\n   \r\n     \r\n    }","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/bank_transfer/event/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 19 Nov 2024 21:35:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"91"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank_transfer_events\": null,\n    \"request_id\": \"yoMDNUVHp4apHdY\"\n}"}],"_postman_id":"d13157ff-225f-48b3-8042-93bdd2c189fb"},{"name":"Sync bank transfer events","id":"27363020-f9ad-4c61-9ab1-76740e49e1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\",\r\n   \"after_id\": 5,\r\n   \"count\": 10\r\n }\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/bank_transfer/event/sync","description":"<p>This endpoint allows you to request up to the next 25 Plaid-initiated bank transfer events that happened after a specific event_id. When using Auth with micro-deposit verification enabled, this endpoint can be used to fetch status updates on ACH micro-deposits.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>after_id</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The latest (largest) event_id fetched via the sync endpoint, or 0 initially</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of bank transfer events to return.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","name":"Auth","type":"folder"}},"urlObject":{"path":["bank_transfer","event","sync"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3719b6fa-edae-49fa-a83e-8e6ee645ef34","name":"Sync bank transfer events","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\",\r\n   \"after_id\": 5,\r\n   \"count\": 10\r\n }\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/bank_transfer/event/sync"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 19 Nov 2024 21:46:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"89"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"bank_transfer_events\": [],\n    \"request_id\": \"tLl4Ig4WretsldH\"\n}"}],"_postman_id":"27363020-f9ad-4c61-9ab1-76740e49e1b4"}],"id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644","description":"<p>This section is for the API Auth endpoints and webhook. It retrieves bank account information to set up electronic funds transfers, such as ACH payments in the US, EFT payments in Canada, BACS payments in the UK, and IBAN / SIC payments in the EU.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"59ae8409-c1cf-43ae-868d-25ec71fa438f","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"921e05a9-6282-4f6c-b2df-769b88fb4137","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"fc99ec76-7d01-49aa-ba81-cd4bc1b14644"},{"name":"Balance","item":[{"name":"Retrieve real-time balance data","id":"1e58ff56-7241-4c75-9610-e20e916fccec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"\r\n{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/accounts/balance/get","description":"<p>This endpoint returns the real-time balance for each of an Item's accounts. It can be used for existing Items that were added via any of Plaid’s other products</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>No</td>\n<td>An optional parameter.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["accounts","balance","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"65258160-6183-44fb-9d95-de4b413a8d1f","name":"Retrieve real-time balance data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"{{access_token}}","value":"{{access_token}}","type":"text"},{"key":"{{client_id}}","value":"{{client_id}}","type":"text"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"\r\n{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/accounts/balance/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx","uuid":"b495549b-4406-48b0-ab86-90db17c35481"},{"key":"Date","value":"Thu, 21 Nov 2024 15:47:11 GMT","uuid":"737216a4-5780-4af0-96b1-0ce74713711b"},{"key":"Content-Type","value":"application/json; charset=utf-8","uuid":"ee763b02-474c-4e45-b5d8-33bd08507d69"},{"key":"Content-Length","value":"1492","uuid":"9f293812-a5ac-4b66-b66b-48da98fa88b6"},{"key":"Connection","value":"keep-alive","uuid":"8f4f940e-4b3b-45a5-b318-337b00ad2a2b"},{"key":"content-encoding","value":"gzip","uuid":"4a5461c5-3140-4077-a19b-99b7759cb86f"},{"key":"plaid-version","value":"2020-09-14","uuid":"fe4be518-5659-46bf-b73f-b6486da5dd2f"},{"key":"vary","value":"Accept-Encoding","uuid":"1d7ffcdf-4ec7-4fa7-99f1-fbfa71093848"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload","uuid":"ac1835b2-5f3a-4540-84d1-ec4037510e46"},{"key":"X-Content-Type-Options","value":"nosniff","uuid":"1affe247-e263-45b5-99c7-249ffc6e31ca"},{"key":"X-Frame-Options","value":"DENY","uuid":"7a7aadd5-23cd-4fdd-85c9-756db3b62a88"},{"key":"X-XSS-Protection","value":"1; mode=block","uuid":"f84e6d07-0e79-4841-85d4-f196955936e1"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n            \"balances\": {\n                \"available\": 100,\n                \"current\": 110,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"persistent_account_id\": \"8cfb8beb89b774ee43b090625f0d61d0814322b43bff984eaf60386e\",\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"balances\": {\n                \"available\": 200,\n                \"current\": 210,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"persistent_account_id\": \"211a4e5d8361a3afb7a3886362198c7306e00a313b5aa944c20d34b6\",\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 1000,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"persistent_account_id\": \"2a01484e1b5ef0b54fbcb89658b2764529bbec94a16f7b95481280a7\",\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vV1v749A4rHAyWy5mxGMtNkNq9pal7fq7A4XQ\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 410,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 2000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"RgEq4rXoreI8pXpvB9njCqVqvxBJQRHa13rGg\",\n            \"balances\": {\n                \"available\": 43200,\n                \"current\": 43200,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6WVp1zNdzwuXlglmeWMETRjR6GN8Egi8ALMxR\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 320.76,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"XnmxDaEBaNHV8o8zj9aDCXdXybaBrZiblqzxW\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 23631.9805,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"DaNJ9MjVMrFXVGV9DqozTP3PJErNyGC3px9Xg\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 65262,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"8G5g83Vq3xCZLDLpvb71hy5yGP3rjnuWEj4rn\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 56302.06,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"E4PJg1Ev1zUJ767lb3B1tPvP9DMJZWC4dJvEB\",\n            \"balances\": {\n                \"available\": 6009,\n                \"current\": 6009,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"WGb3edgzdoCJ8p8gByZVtbzbgvQEWGt6aKA49\",\n            \"balances\": {\n                \"available\": 12060,\n                \"current\": 12060,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"A3dJvebpelcE5B5VyDxkcZbZ53kBAWF9eEKow\",\n            \"balances\": {\n                \"available\": 4980,\n                \"current\": 5020,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 10000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        }\n    ],\n    \"item\": {\n        \"available_products\": [\n            \"assets\",\n            \"balance\",\n            \"signal\",\n            \"identity\",\n            \"identity_match\",\n            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n        \"products\": [\n            \"assets\",\n            \"auth\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"bXAi4R6dOQjpdVU\"\n}"}],"_postman_id":"1e58ff56-7241-4c75-9610-e20e916fccec"}],"id":"871b55f0-f2bb-4679-8b8b-a67bbca5a142","description":"<p>This API reference and verify real-time account balances.</p>\n","_postman_id":"871b55f0-f2bb-4679-8b8b-a67bbca5a142","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Identity","item":[{"name":"Retrieve identity data","id":"2003188c-d4ea-4afe-85de-d24231478b27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/get ","description":"<p>This endpoint allows you to retrieve various account holder information on file with the financial institution, including names, emails, phone numbers, and addresses. Only name data is guaranteed to be returned; other fields will be empty arrays if not provided by the institution.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>No</td>\n<td>An optional object to filter.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["identity","get "],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"50477cbe-458e-487b-89ff-dbc23b7d1f07","name":"Retrieve identity data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 21 Nov 2024 17:10:31 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n            \"balances\": {\n                \"available\": 100,\n                \"current\": 110,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"persistent_account_id\": \"8cfb8beb89b774ee43b090625f0d61d0814322b43bff984eaf60386e\",\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"balances\": {\n                \"available\": 200,\n                \"current\": 210,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"persistent_account_id\": \"211a4e5d8361a3afb7a3886362198c7306e00a313b5aa944c20d34b6\",\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 1000,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"persistent_account_id\": \"2a01484e1b5ef0b54fbcb89658b2764529bbec94a16f7b95481280a7\",\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vV1v749A4rHAyWy5mxGMtNkNq9pal7fq7A4XQ\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 410,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 2000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"RgEq4rXoreI8pXpvB9njCqVqvxBJQRHa13rGg\",\n            \"balances\": {\n                \"available\": 43200,\n                \"current\": 43200,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6WVp1zNdzwuXlglmeWMETRjR6GN8Egi8ALMxR\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 320.76,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"XnmxDaEBaNHV8o8zj9aDCXdXybaBrZiblqzxW\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 23631.9805,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"DaNJ9MjVMrFXVGV9DqozTP3PJErNyGC3px9Xg\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 65262,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"8G5g83Vq3xCZLDLpvb71hy5yGP3rjnuWEj4rn\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 56302.06,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"E4PJg1Ev1zUJ767lb3B1tPvP9DMJZWC4dJvEB\",\n            \"balances\": {\n                \"available\": 6009,\n                \"current\": 6009,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"WGb3edgzdoCJ8p8gByZVtbzbgvQEWGt6aKA49\",\n            \"balances\": {\n                \"available\": 12060,\n                \"current\": 12060,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"A3dJvebpelcE5B5VyDxkcZbZ53kBAWF9eEKow\",\n            \"balances\": {\n                \"available\": 4980,\n                \"current\": 5020,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 10000,\n                \"unofficial_currency_code\": null\n            },\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"owners\": [\n                {\n                    \"addresses\": [\n                        {\n                            \"data\": {\n                                \"city\": \"Malakoff\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"14236\",\n                                \"region\": \"NY\",\n                                \"street\": \"2992 Cameron Road\"\n                            },\n                            \"primary\": true\n                        },\n                        {\n                            \"data\": {\n                                \"city\": \"San Matias\",\n                                \"country\": \"US\",\n                                \"postal_code\": \"93405-2255\",\n                                \"region\": \"CA\",\n                                \"street\": \"2493 Leisure Lane\"\n                            },\n                            \"primary\": false\n                        }\n                    ],\n                    \"emails\": [\n                        {\n                            \"data\": \"accountholder0@example.com\",\n                            \"primary\": true,\n                            \"type\": \"primary\"\n                        },\n                        {\n                            \"data\": \"accountholder1@example.com\",\n                            \"primary\": false,\n                            \"type\": \"secondary\"\n                        },\n                        {\n                            \"data\": \"extraordinarily.long.email.username.123456@reallylonghostname.com\",\n                            \"primary\": false,\n                            \"type\": \"other\"\n                        }\n                    ],\n                    \"names\": [\n                        \"Alberta Bobbeth Charleson\"\n                    ],\n                    \"phone_numbers\": [\n                        {\n                            \"data\": \"1112223333\",\n                            \"primary\": false,\n                            \"type\": \"home\"\n                        },\n                        {\n                            \"data\": \"1112224444\",\n                            \"primary\": false,\n                            \"type\": \"work\"\n                        },\n                        {\n                            \"data\": \"1112225555\",\n                            \"primary\": false,\n                            \"type\": \"mobile\"\n                        }\n                    ]\n                }\n            ],\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        }\n    ],\n    \"item\": {\n        \"available_products\": [\n            \"assets\",\n            \"balance\",\n            \"signal\",\n            \"identity_match\",\n            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"identity\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"qqyzfKXGNTLa5Tk\"\n}"}],"_postman_id":"2003188c-d4ea-4afe-85de-d24231478b27"},{"name":"Retrieve identity match score","id":"3e9aa5b3-102e-43c8-bf7a-cd30f4765243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\",\r\n  \"user\": {\r\n    \"phone_number\": \"12345678\",\r\n    \"legal_name\": \"John Doe\",\r\n    \"email_address\": \"johndoe@yahoo.com\",\r\n    \"address\": {\r\n      \"street\": \"John street\",\r\n      \"region\": \"Texas\",\r\n      \"country\": \"USA\",\r\n      \"city\": \"Houston\",\r\n      \"postal_code\": \"112345\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/match","description":"<p>This endpoint generates a match score, which indicates how well the provided identity data matches the identity information on file with the account holder's financial institution.</p>\n<p>StartFragment</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>user</td>\n<td>object</td>\n<td>No</td>\n<td>The user's legal name, phone number, email address and address used to perform fuzzy match</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["identity","match"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"531f3bcb-c67e-4ecc-9440-4d2ef510fef2","name":"Retrieve identity match score","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n  \"secret\": \"{{your_secret}}\",\r\n  \"access_token\": \"{{access_token}}\",\r\n  \"user\": {\r\n    \"phone_number\": \"12345678\",\r\n    \"legal_name\": \"John Doe\",\r\n    \"email_address\": \"johndoe@yahoo.com\",\r\n    \"address\": {\r\n      \"street\": \"John street\",\r\n      \"region\": \"Texas\",\r\n      \"country\": \"USA\",\r\n      \"city\": \"Houston\",\r\n      \"postal_code\": \"112345\"\r\n    }\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/match"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sun, 24 Nov 2024 15:19:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1531"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"persistent_account_id\": \"8cfb8beb89b774ee43b090625f0d61d0814322b43bff984eaf60386e\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"persistent_account_id\": \"211a4e5d8361a3afb7a3886362198c7306e00a313b5aa944c20d34b6\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"persistent_account_id\": \"2a01484e1b5ef0b54fbcb89658b2764529bbec94a16f7b95481280a7\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vV1v749A4rHAyWy5mxGMtNkNq9pal7fq7A4XQ\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"RgEq4rXoreI8pXpvB9njCqVqvxBJQRHa13rGg\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6WVp1zNdzwuXlglmeWMETRjR6GN8Egi8ALMxR\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"XnmxDaEBaNHV8o8zj9aDCXdXybaBrZiblqzxW\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"DaNJ9MjVMrFXVGV9DqozTP3PJErNyGC3px9Xg\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"8G5g83Vq3xCZLDLpvb71hy5yGP3rjnuWEj4rn\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"E4PJg1Ev1zUJ767lb3B1tPvP9DMJZWC4dJvEB\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"WGb3edgzdoCJ8p8gByZVtbzbgvQEWGt6aKA49\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"A3dJvebpelcE5B5VyDxkcZbZ53kBAWF9eEKow\",\n            \"address\": {\n                \"is_postal_code_match\": false,\n                \"score\": 0\n            },\n            \"balances\": {\n                \"available\": null,\n                \"current\": null,\n                \"iso_currency_code\": null,\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"email_address\": {\n                \"score\": 0\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": false,\n                \"is_first_name_or_last_name_match\": false,\n                \"is_nickname_match\": false,\n                \"score\": 0\n            },\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"phone_number\": {\n                \"score\": 0\n            },\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        }\n    ],\n    \"item\": {\n        \"available_products\": [\n            \"assets\",\n            \"balance\",\n            \"signal\",\n            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"signal\",\n            \"identity\",\n            \"identity_match\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"ojQpN3dSKNaGyko\"\n}"}],"_postman_id":"3e9aa5b3-102e-43c8-bf7a-cd30f4765243"},{"name":"Returns uploaded document identity","id":"f09b0812-19cd-430f-af8c-a7b6976c8c76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/documents/uploads/get","description":"<p>This endpoint retrieve identity details when using Identity Document Upload.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>No</td>\n<td>An optional object to filter</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["identity","documents","uploads","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e7758518-9e6a-46e3-b487-562f784de455","name":"Returns uploaded document identity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/identity/documents/uploads/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx","uuid":"eed270c1-0c9d-4937-9389-bdfecd68a361"},{"key":"Date","value":"Thu, 21 Nov 2024 21:34:07 GMT","uuid":"8c8f5c25-e336-47f0-afe4-8a5e3acd9f16"},{"key":"Content-Type","value":"application/json; charset=utf-8","uuid":"a096f895-b60e-4b4c-83b4-5a5452d81916"},{"key":"Content-Length","value":"1451","uuid":"a92f4322-c157-4599-944d-5df4a4a2edd7"},{"key":"Connection","value":"keep-alive","uuid":"678167f9-003c-43ae-b424-e2ff42d863c8"},{"key":"content-encoding","value":"gzip","uuid":"01ebda9d-8d3c-402c-a24c-62761a8c31d0"},{"key":"vary","value":"Accept-Encoding","uuid":"76d954f1-73bc-449d-a5fc-b33e364f9bed"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload","uuid":"5aa44145-b158-47cb-9a7a-50977d2f610c"},{"key":"X-Content-Type-Options","value":"nosniff","uuid":"44bbc055-9c7c-454e-9df9-9f45c3017f71"},{"key":"X-Frame-Options","value":"DENY","uuid":"66dcc3af-8704-44a8-bc74-6470da289a65"},{"key":"X-XSS-Protection","value":"1; mode=block","uuid":"dc347d5b-89e3-4918-8749-7ced5c9f8b68"}],"cookie":[],"responseTime":null,"body":"{\n    \"accounts\": [\n        {\n            \"account_id\": \"mV4vBqZbqeHVZWZGNp1JC1y1BXQ9aoTg3zwAe\",\n            \"balances\": {\n                \"available\": 100,\n                \"current\": 110,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"0000\",\n            \"name\": \"Plaid Checking\",\n            \"official_name\": \"Plaid Gold Standard 0% Interest Checking\",\n            \"owners\": [],\n            \"persistent_account_id\": \"8cfb8beb89b774ee43b090625f0d61d0814322b43bff984eaf60386e\",\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"balances\": {\n                \"available\": 200,\n                \"current\": 210,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"1111\",\n            \"name\": \"Plaid Saving\",\n            \"official_name\": \"Plaid Silver Standard 0.1% Interest Saving\",\n            \"owners\": [],\n            \"persistent_account_id\": \"211a4e5d8361a3afb7a3886362198c7306e00a313b5aa944c20d34b6\",\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"9nlJgxNKxvHReKevk4xbcmom7e3l4nS4JabEx\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 1000,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"2222\",\n            \"name\": \"Plaid CD\",\n            \"official_name\": \"Plaid Bronze Standard 0.2% Interest CD\",\n            \"owners\": [],\n            \"persistent_account_id\": \"2a01484e1b5ef0b54fbcb89658b2764529bbec94a16f7b95481280a7\",\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vV1v749A4rHAyWy5mxGMtNkNq9pal7fq7A4XQ\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 410,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 2000,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"3333\",\n            \"name\": \"Plaid Credit Card\",\n            \"official_name\": \"Plaid Diamond 12.5% APR Interest Credit Card\",\n            \"owners\": [],\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"RgEq4rXoreI8pXpvB9njCqVqvxBJQRHa13rGg\",\n            \"balances\": {\n                \"available\": 43200,\n                \"current\": 43200,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"4444\",\n            \"name\": \"Plaid Money Market\",\n            \"official_name\": \"Plaid Platinum Standard 1.85% Interest Money Market\",\n            \"owners\": [],\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6WVp1zNdzwuXlglmeWMETRjR6GN8Egi8ALMxR\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 320.76,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"owners\": [],\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"XnmxDaEBaNHV8o8zj9aDCXdXybaBrZiblqzxW\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 23631.9805,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"owners\": [],\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"DaNJ9MjVMrFXVGV9DqozTP3PJErNyGC3px9Xg\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 65262,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"owners\": [],\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"8G5g83Vq3xCZLDLpvb71hy5yGP3rjnuWEj4rn\",\n            \"balances\": {\n                \"available\": null,\n                \"current\": 56302.06,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"owners\": [],\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"E4PJg1Ev1zUJ767lb3B1tPvP9DMJZWC4dJvEB\",\n            \"balances\": {\n                \"available\": 6009,\n                \"current\": 6009,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"owners\": [],\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"WGb3edgzdoCJ8p8gByZVtbzbgvQEWGt6aKA49\",\n            \"balances\": {\n                \"available\": 12060,\n                \"current\": 12060,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": null,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"owners\": [],\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"A3dJvebpelcE5B5VyDxkcZbZ53kBAWF9eEKow\",\n            \"balances\": {\n                \"available\": 4980,\n                \"current\": 5020,\n                \"iso_currency_code\": \"USD\",\n                \"limit\": 10000,\n                \"unofficial_currency_code\": null\n            },\n            \"documents\": null,\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"owners\": [],\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        }\n    ],\n    \"item\": {\n        \"available_products\": [],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"k5dvrGjkGetGdadB93VPta6ernnDw4fWxrxLK\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"signal\",\n            \"identity\",\n            \"identity_match\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"j4IkLieyfo87KSH\"\n}"}],"_postman_id":"f09b0812-19cd-430f-af8c-a7b6976c8c76"}],"id":"796ba1ec-f599-489c-9d78-6f97f9343031","description":"<p>This API verify the name, address, phone number, and email address of a user against bank account information on file.</p>\n","_postman_id":"796ba1ec-f599-489c-9d78-6f97f9343031","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Signal","item":[{"name":"Evaluate a planned ACH transaction","id":"9c67dc23-c84c-4b93-b0d5-df672501912c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"amount\": 543.45,\r\n    \"client_user_id\": \"user1234\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/evaluate","description":"<p>This endpoint evaluate a planned ACH transaction to get a return risk assessment and additional risk signals. In order to obtain a valid score for an This endpoint evaluate ACH transaction, Plaid must have an access token for the account, and the Item must be healthy or have recently been in a healthy state. If the transaction does not meet eligibility requirements, an error will be returned corresponding to the underlying cause</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid access_token for the account that will be debited or credited.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited.</td>\n</tr>\n<tr>\n<td>client_transactional_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The unique ID that you would like to use to refer to this transaction</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>number</td>\n<td>Yes</td>\n<td>The transaction amount, in USD (e.g. 102.05)</td>\n</tr>\n<tr>\n<td>user_present</td>\n<td>boolean</td>\n<td>No</td>\n<td>true if the end user is present while initiating the ACH transfer and the endpoint is being called; false otherwise</td>\n</tr>\n<tr>\n<td>client_user_id</td>\n<td>string</td>\n<td>No</td>\n<td>A unique ID that identifies the end user in your system</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["signal","evaluate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4d71e94f-051f-4e3f-8655-5d9d7f82cdfb","name":"Evaluate a planned ACH transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"amount\": 543.45,\r\n    \"client_user_id\": \"user1234\"\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/evaluate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 21 Nov 2024 21:41:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1100"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"core_attributes\": {\n        \"address_change_count_28d\": 1,\n        \"address_change_count_90d\": 1,\n        \"available_balance\": 2392.9344129029632,\n        \"balance_last_updated\": \"2024-11-21T03:02:48Z\",\n        \"credit_transactions_count_10d\": 4,\n        \"credit_transactions_count_30d\": 5,\n        \"credit_transactions_count_60d\": 9,\n        \"credit_transactions_count_90d\": 9,\n        \"current_balance\": 4523.7932255212045,\n        \"days_since_account_opening\": 763,\n        \"days_since_first_plaid_connection\": 2291,\n        \"days_with_negative_balance_count_90d\": 3,\n        \"debit_transactions_count_10d\": 2,\n        \"debit_transactions_count_30d\": 4,\n        \"debit_transactions_count_60d\": 8,\n        \"debit_transactions_count_90d\": 10,\n        \"distinct_ip_addresses_count_30d\": 0,\n        \"distinct_ip_addresses_count_3d\": 0,\n        \"distinct_ip_addresses_count_7d\": 1,\n        \"distinct_ip_addresses_count_90d\": 0,\n        \"distinct_ssl_tls_connection_sessions_count_30d\": 2,\n        \"distinct_ssl_tls_connection_sessions_count_3d\": 1,\n        \"distinct_ssl_tls_connection_sessions_count_7d\": 1,\n        \"distinct_ssl_tls_connection_sessions_count_90d\": 0,\n        \"distinct_user_agents_count_30d\": 1,\n        \"distinct_user_agents_count_3d\": 2,\n        \"distinct_user_agents_count_7d\": 1,\n        \"distinct_user_agents_count_90d\": 2,\n        \"email_change_count_28d\": 0,\n        \"email_change_count_90d\": 1,\n        \"failed_plaid_non_oauth_authentication_attempts_count_30d\": 8,\n        \"failed_plaid_non_oauth_authentication_attempts_count_3d\": 2,\n        \"failed_plaid_non_oauth_authentication_attempts_count_7d\": 5,\n        \"is_account_closed\": false,\n        \"is_account_frozen_or_restricted\": false,\n        \"is_savings_or_money_market_account\": true,\n        \"nsf_overdraft_transactions_count_30d\": 15,\n        \"nsf_overdraft_transactions_count_60d\": 3,\n        \"nsf_overdraft_transactions_count_7d\": 2,\n        \"nsf_overdraft_transactions_count_90d\": 16,\n        \"p10_eod_balance_30d\": 1454.0621133833533,\n        \"p10_eod_balance_31d_to_60d\": 3100.364439267779,\n        \"p10_eod_balance_60d\": 4695.822691210881,\n        \"p10_eod_balance_61d_to_90d\": 2381.251305353251,\n        \"p10_eod_balance_90d\": 1675.7254998001995,\n        \"p50_credit_transactions_amount_28d\": 1625.6289278945587,\n        \"p50_debit_transactions_amount_28d\": 1653.0555842140634,\n        \"p50_eod_balance_30d\": 7863.162198040827,\n        \"p50_eod_balance_31d_to_60d\": 7743.310641798402,\n        \"p50_eod_balance_60d\": 6886.488877029504,\n        \"p50_eod_balance_61d_to_90d\": 10403.100414519751,\n        \"p50_eod_balance_90d\": 10810.428228480494,\n        \"p90_eod_balance_30d\": 14223.296635508646,\n        \"p90_eod_balance_31d_to_60d\": 19478.709325396154,\n        \"p90_eod_balance_60d\": 17923.410116586376,\n        \"p90_eod_balance_61d_to_90d\": 19683.157265862756,\n        \"p90_eod_balance_90d\": 22194.303314750025,\n        \"p95_credit_transactions_amount_28d\": 4070.4909326129336,\n        \"p95_debit_transactions_amount_28d\": 4483.543867404196,\n        \"phone_change_count_28d\": 1,\n        \"phone_change_count_90d\": 3,\n        \"plaid_connections_count_30d\": 1,\n        \"plaid_connections_count_7d\": 0,\n        \"plaid_non_oauth_authentication_attempts_count_30d\": 5,\n        \"plaid_non_oauth_authentication_attempts_count_3d\": 2,\n        \"plaid_non_oauth_authentication_attempts_count_7d\": 2,\n        \"total_credit_transactions_amount_10d\": 584.0439433728224,\n        \"total_credit_transactions_amount_30d\": 606.0406849319241,\n        \"total_credit_transactions_amount_60d\": 377.6963456183898,\n        \"total_credit_transactions_amount_90d\": 111.82598451800052,\n        \"total_debit_transactions_amount_10d\": 367.8182828265067,\n        \"total_debit_transactions_amount_30d\": 585.5262322509087,\n        \"total_debit_transactions_amount_60d\": 317.59235259890164,\n        \"total_debit_transactions_amount_90d\": 697.941424303426,\n        \"total_plaid_connections_count\": 1,\n        \"transactions_last_updated\": \"2024-11-21T03:02:48Z\",\n        \"unauthorized_transactions_count_30d\": 3,\n        \"unauthorized_transactions_count_60d\": 8,\n        \"unauthorized_transactions_count_7d\": 15,\n        \"unauthorized_transactions_count_90d\": 12\n    },\n    \"request_id\": \"FvveoR2870POgTG\",\n    \"scores\": {\n        \"bank_initiated_return_risk\": {\n            \"risk_tier\": 5,\n            \"score\": 62\n        },\n        \"customer_initiated_return_risk\": {\n            \"risk_tier\": 3,\n            \"score\": 22\n        }\n    },\n    \"warnings\": []\n}"}],"_postman_id":"9c67dc23-c84c-4b93-b0d5-df672501912c"},{"name":"Report whether you initiated an ACH transaction","id":"578c974f-e4c0-465c-a3a3-a71f872d82f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"initiated\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/decision/report","description":"<p>This endpoint is used after /signal/evaluate, to report whether the transaction was initiated.</p>\n<p>Note: Must be the same as the client_transaction_id supplied when calling /signal/evaluate.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>client_transactional_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Must be the same as the client_transaction_id supplied when calling /signal/evaluate</td>\n</tr>\n<tr>\n<td>initiated</td>\n<td>boolean</td>\n<td>Yes</td>\n<td>true if the ACH transaction was initiated, false otherwise</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["signal","decision","report"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"22f0a0bc-f1d2-467c-9da5-76c0a2f0d252","name":"Report whether you initiated an ACH transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"initiated\": true\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/decision/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 21 Nov 2024 21:15:21 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"7aXV2pt6O3PzNx2\"\n}"}],"_postman_id":"578c974f-e4c0-465c-a3a3-a71f872d82f5"},{"name":"Report a return for an ACH transaction","id":"2ef27d7b-4a68-40e8-a943-3cd53a73fd92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"return_code\": \"R01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/return/report","description":"<p>This endpoint to report a returned transaction that was previously sent to the /signal/evaluate endpoint.</p>\n<p>Note: Must be the same as the client_transaction_id supplied when calling /signal/evaluate or /accounts/balance/get.</p>\n<p>Must be a valid ACH return code (e.g. \"R01\")</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>client_transactional_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Must be the same as the client_transaction_id supplied when calling /signal/evaluate</td>\n</tr>\n<tr>\n<td>return_code</td>\n<td>string</td>\n<td>Yes</td>\n<td>Must be a valid ACH return code (e.g. \"R01\")</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["signal","return","report"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dd1026a7-96be-46fe-b54e-c3c7dc9766d9","name":"Report a return for an ACH transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"client_transaction_id\": \"txn12345\",\r\n    \"return_code\": \"R01\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/return/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 21 Nov 2024 21:44:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"azzBSHSsmagCem3\"\n}"}],"_postman_id":"2ef27d7b-4a68-40e8-a943-3cd53a73fd92"},{"name":"Opt-in an Item to Signal","id":"dfac6481-fb61-4bb7-ba7b-ecdf6ca47aaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/prepare","description":"<p>This enpoint is used when an Item is not initialized with Signal, call /signal/prepare to opt-in that Item to the Signal data collection process, developing a Signal score.</p>\n<p>If /signal/prepare is skipped on an Item that is not initialized with Signal, the initial call to /signal/evaluate on that Item will be less accurate, because Signal will have access to less data for computing the Signal score.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["signal","prepare"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"064beb87-2caf-42df-8e2e-70a1666a5f20","name":"Opt-in an Item to Signal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/signal/prepare"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 21 Nov 2024 21:29:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"KWszZa53L564wJ1\"\n}"}],"_postman_id":"dfac6481-fb61-4bb7-ba7b-ecdf6ca47aaf"}],"id":"6e933b1f-2327-4ed5-9ba9-1ae047e7a0f2","description":"<p>The <strong>Signal endpoint</strong> in Plaid API is used to evaluate the risk of a bank transfer transaction and help detect potentially fraudulent activity. It provides real-time insights and predictive risk scores to assist in decision-making for ACH transactions.</p>\n","_postman_id":"6e933b1f-2327-4ed5-9ba9-1ae047e7a0f2","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Transfer","item":[{"name":"Initaiting Transfer","item":[{"name":"Create a transfer authorization","id":"b2382570-cad3-4417-adf5-a879f0c3e7c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"type\": \"debit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"30.54\",\r\n   \"ach_class\": \"ppd\",\r\n   \"user\": {\r\n     \"legal_name\": \"John Doe\"\r\n   }\r\n\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/authorization/create","description":"<p>This endpoint is used to authorize a transfer. This endpoint must be called prior to calling /transfer/create. The transfer authorization will expire if not used after one hour.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of transfer. This will be either debit or credit.</td>\n</tr>\n<tr>\n<td>network</td>\n<td>string</td>\n<td>Yes</td>\n<td>The network or rails used for the transfer.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>string</td>\n<td>Yes</td>\n<td>The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\")</td>\n</tr>\n<tr>\n<td>ach_class</td>\n<td>string</td>\n<td>Yes</td>\n<td>Specifies the use case of the transfer.</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>Yes</td>\n<td>The legal name and other information for the account holder</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","authorization","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8237ac56-4009-4d52-a2d7-481de3e25398","name":"Create a transfer authorization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"type\": \"debit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"30.54\",\r\n   \"ach_class\": \"ppd\",\r\n   \"user\": {\r\n     \"legal_name\": \"John Doe\"\r\n   }\r\n\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/authorization/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 15:18:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"482"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization\": {\n        \"created\": \"2024-11-23T15:18:03.82163094Z\",\n        \"decision\": \"approved\",\n        \"decision_rationale\": null,\n        \"guarantee_decision\": null,\n        \"guarantee_decision_rationale\": null,\n        \"id\": \"bf348b60-3c93-76bf-b7fe-0323e7c88514\",\n        \"payment_risk\": null,\n        \"proposed_transfer\": {\n            \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n            \"ach_class\": \"ppd\",\n            \"amount\": \"30.54\",\n            \"credit_funds_source\": null,\n            \"funding_account_id\": null,\n            \"iso_currency_code\": \"USD\",\n            \"ledger_id\": \"aa9cdaef-2ec7-446c-a754-ae426b069ea5\",\n            \"network\": \"ach\",\n            \"origination_account_id\": \"\",\n            \"originator_client_id\": \"6734a0ce8ba66c001aae3b86\",\n            \"type\": \"debit\",\n            \"user\": {\n                \"address\": null,\n                \"email_address\": null,\n                \"legal_name\": \"John Doe\",\n                \"phone_number\": null\n            }\n        }\n    },\n    \"request_id\": \"6cU5BkOPPLo9AuM\"\n}"}],"_postman_id":"b2382570-cad3-4417-adf5-a879f0c3e7c3"},{"name":"Cancel a transfer authorization","id":"dd28c5c8-e00f-4fc8-848a-463db456f4e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"authorization_id\":\"bf348b60-3c93-76bf-b7fe-0323e7c88514\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/authorization/cancel","description":"<p>This endpoint is used to cancel a transfer authorization. A transfer authorization is eligible for cancellation if it has not yet been used to create a transfer.</p>\n<p>NOTE: Your authorization_id is the id gotten from your create a transfer authorization response.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>authorization_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a transfer authorization.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","authorization","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"56ed9fc9-1949-4620-a148-fbb07385118e","name":"Cancel a transfer authorization","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"authorization_id\":\"bf348b60-3c93-76bf-b7fe-0323e7c88514\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/authorization/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 15:51:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"KtMVHduTDHn93oC\"\n}"}],"_postman_id":"dd28c5c8-e00f-4fc8-848a-463db456f4e5"},{"name":"Create a transfer","id":"34eacedf-ac28-4fde-8228-aeb05af5ed9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n   \"authorization_id\": \"bf348b60-3c93-76bf-b7fe-0323e7c88514\",\r\n   \"description\": \"Payment\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/create","description":"<p>This endpoint is used to initiate a new transfer. This endpoint is retryable and idempotent; if a transfer with the provided transfer_id has already been created, it will return the transfer details without creating a new transfer.</p>\n<p>StartFragment</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<p>View More</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid access_token for the account that will be debited or credited.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited.</td>\n</tr>\n<tr>\n<td>authorization_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a transfer authorization</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>string</td>\n<td>No</td>\n<td>The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\")</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Yes</td>\n<td>The transfer description</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d1452591-3f9f-40f9-97f7-c66f41d9d51b","name":"Create a transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n   \"authorization_id\": \"bf348b60-3c93-76bf-b7fe-0323e7c88514\",\r\n   \"description\": \"Payment\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 16:03:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"600"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"q8qIbwjCDMlc64U\",\n    \"transfer\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"30.54\",\n        \"authorization_id\": \"bf348b60-3c93-76bf-b7fe-0323e7c88514\",\n        \"cancellable\": true,\n        \"created\": \"2024-11-23T16:03:29.981561Z\",\n        \"credit_funds_source\": null,\n        \"description\": \"Payment\",\n        \"expected_settlement_date\": null,\n        \"failure_reason\": null,\n        \"funding_account_id\": null,\n        \"guarantee_decision\": null,\n        \"guarantee_decision_rationale\": null,\n        \"id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\n        \"iso_currency_code\": \"USD\",\n        \"ledger_id\": \"aa9cdaef-2ec7-446c-a754-ae426b069ea5\",\n        \"metadata\": null,\n        \"network\": \"ach\",\n        \"network_trace_id\": null,\n        \"origination_account_id\": \"\",\n        \"originator_client_id\": \"6734a0ce8ba66c001aae3b86\",\n        \"recurring_transfer_id\": null,\n        \"refunds\": [],\n        \"standard_return_window\": null,\n        \"status\": \"pending\",\n        \"sweep_status\": \"unswept\",\n        \"type\": \"debit\",\n        \"unauthorized_return_window\": null,\n        \"user\": {\n            \"address\": null,\n            \"email_address\": null,\n            \"legal_name\": \"John Doe\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"34eacedf-ac28-4fde-8228-aeb05af5ed9a"},{"name":"Cancel a transfer","id":"36d56dc5-50ad-42fa-a524-2a81f67abed1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_id\":\"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/cancel","description":"<p>This endpoint is used to cancel a transfer. A transfer is eligible for cancellation if the cancellable property returned by /transfer/get is true.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f976420e-cde2-4abc-9241-a39d1fc88c80","name":"Cancel a transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_id\":\"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 16:19:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"11NhgtghYEoYHT4\"\n}"}],"_postman_id":"36d56dc5-50ad-42fa-a524-2a81f67abed1"}],"id":"67efe163-82b3-4bd0-8a93-a91369667a33","description":"<p>The Transfer Endpoint in Plaid API facilitates the creation, management, and monitoring of bank-to-bank transfers. It supports the full transfer lifecycle.</p>\n","_postman_id":"67efe163-82b3-4bd0-8a93-a91369667a33","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Reading Transfer","item":[{"name":"Retrieve a transfer","id":"3f4b444c-720b-4b7b-87b8-89387a9fdf11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/get","description":"<p>This endpoint fetches information about the transfer corresponding to the given transfer_id or authorization_id. One of transfer_id or authorization_id must be populated but not both.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n</tr>\n<tr>\n<td>authorization_id</td>\n<td>string</td>\n<td>No</td>\n<td>Plaid’s unique identifier for a transfer authorization.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f97d0ef8-1337-4f19-bac1-870f5dc5cc0a","name":"Retrieve a transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 16:36:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"599"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"92dDloLhaFbArlG\",\n    \"transfer\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"30.54\",\n        \"authorization_id\": \"bf348b60-3c93-76bf-b7fe-0323e7c88514\",\n        \"cancellable\": false,\n        \"created\": \"2024-11-23T16:03:29.981561Z\",\n        \"credit_funds_source\": null,\n        \"description\": \"Payment\",\n        \"expected_settlement_date\": null,\n        \"failure_reason\": null,\n        \"funding_account_id\": null,\n        \"guarantee_decision\": null,\n        \"guarantee_decision_rationale\": null,\n        \"id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\n        \"iso_currency_code\": \"USD\",\n        \"ledger_id\": \"aa9cdaef-2ec7-446c-a754-ae426b069ea5\",\n        \"metadata\": null,\n        \"network\": \"ach\",\n        \"network_trace_id\": null,\n        \"origination_account_id\": \"\",\n        \"originator_client_id\": \"6734a0ce8ba66c001aae3b86\",\n        \"recurring_transfer_id\": null,\n        \"refunds\": [],\n        \"standard_return_window\": null,\n        \"status\": \"cancelled\",\n        \"sweep_status\": \"unswept\",\n        \"type\": \"debit\",\n        \"unauthorized_return_window\": null,\n        \"user\": {\n            \"address\": null,\n            \"email_address\": null,\n            \"legal_name\": \"John Doe\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"3f4b444c-720b-4b7b-87b8-89387a9fdf11"},{"name":"List transfers","id":"d8010a56-6c1c-434e-a801-863ead7791b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\", \r\n   \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"count\": 16,\r\n    \"offset\": 1,\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/list","description":"<p>This endpoint is used to see a list of all your transfers and their statuses. Results are paginated; use the count and offset query parameters to retrieve the desired transfers.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The start datetime of transfers to list.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The end datetime of transfers to list</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of transfers to return</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The number of transfers to skip before returning results.</td>\n</tr>\n<tr>\n<td>originator_account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Filter transfers to only those with the specified originator client.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b20dbea5-0733-4156-acbc-f55f016d261e","name":"List transfers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\", \r\n   \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"count\": 16,\r\n    \"offset\": 1,\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 16:57:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"78"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"h5PgNkOxFQyUl2K\",\n    \"transfers\": []\n}"}],"_postman_id":"d8010a56-6c1c-434e-a801-863ead7791b1"},{"name":"List transfer events","id":"75cafb48-9684-4c22-a164-8edb5634c588","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_type\": \"credit\",\r\n    \"event_types\": [\"pending\"],\r\n    \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"transfer_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"count\": 16,\r\n    \"offset\": 1,\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/event/list","description":"<p>This endpoint is used to get a list of transfer events based on specified filter criteria.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The start datetime of transfers to list.</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The end datetime of transfers to list</td>\n</tr>\n<tr>\n<td>transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The account ID to get events for all transactions to/from an account</td>\n</tr>\n<tr>\n<td>transfer_type</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of transfer. This will be either debit or credit</td>\n</tr>\n<tr>\n<td>event_type</td>\n<td>string</td>\n<td>Yes</td>\n<td>Filter events by event type.  <br />Possible values: pending, cancelled, failed, posted, settled</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of transfers to return</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The number of transfers to skip before returning results.</td>\n</tr>\n<tr>\n<td>originator_account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Filter transfer events to only those with the specified originator client</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","event","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"754a5e37-b54e-4204-ab13-062b9e2b7e0a","name":"List transfer events","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_type\": \"credit\",\r\n    \"event_types\": [\"pending\"],\r\n    \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"transfer_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"count\": 16,\r\n    \"offset\": 1,\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/event/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 17:23:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"102"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"has_more\": false,\n    \"request_id\": \"N5ce0DUrjmHn7OU\",\n    \"transfer_events\": []\n}"}],"_postman_id":"75cafb48-9684-4c22-a164-8edb5634c588"},{"name":"Sync transfer events","id":"9a27a6dd-aa9b-4fc6-9646-3c93bbb2a75a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"after_id\": 2,\r\n    \"count\": 15\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/event/sync","description":"<p>This endpoint allows you to request up to the next 25 transfer events that happened after a specific event_id. Use the /transfer/event/sync endpoint to guarantee you have seen all transfer events.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>after_id</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The latest (largest) event_id fetched via the sync endpoint, or 0 initially</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of transfer events to return</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","event","sync"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bb2a70be-1389-465b-a534-5c4f9baa9565","name":"Sync transfer events","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"after_id\": 2,\r\n   \"count\": 15\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/event/sync"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 17:32:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"102"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"has_more\": false,\n    \"request_id\": \"5DuM012gXt3vME0\",\n    \"transfer_events\": []\n}"}],"_postman_id":"9a27a6dd-aa9b-4fc6-9646-3c93bbb2a75a"},{"name":"List sweeps","id":"87f52838-5089-447e-b365-140850f1cd02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"count\": 16,\r\n    \"offset\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/sweep/list","description":"<p>This endpoint fetches sweeps matching the given filters.</p>\n<p>StartFragment</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>start_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The start datetime of sweeps to return (RFC 3339 format)</td>\n</tr>\n<tr>\n<td>end_date</td>\n<td>string</td>\n<td>Yes</td>\n<td>The end datetime of sweeps to return (RFC 3339 format)</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of transfer events to return</td>\n</tr>\n<tr>\n<td>offset</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The number of sweeps to skip before returning results.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","sweep","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"dc8e2396-d3e8-4caf-aba5-200cda1bd369","name":"List sweeps","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"start_date\": \"2022-07-06T22:35:49Z\",\r\n    \"end_date\": \"2022-07-12T22:35:49Z\",\r\n    \"count\": 16,\r\n    \"offset\": 1\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/sweep/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 18:59:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"77"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"JZfmYqU9mGWw3PP\",\n    \"sweeps\": null\n}"}],"_postman_id":"87f52838-5089-447e-b365-140850f1cd02"}],"id":"f9f10cfa-43d6-4052-ac72-68cd3f76fdd3","_postman_id":"f9f10cfa-43d6-4052-ac72-68cd3f76fdd3","description":"","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Account Linking","item":[{"name":"Get RTP eligibility information of a transfer","id":"53fac587-5198-4da8-9d61-fffad5492445","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/capabilities/get","description":"<p>This endpoint is used to determine the RTP eligibility information of an account to be used with Transfer. This endpoint works on all Transfer-capable Items, including those created by /transfer/migrate_account.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid access_token for the account that will be debited or credited.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","capabilities","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e8c615a2-6684-45d3-9acc-7dde0cc4539d","name":"Get RTP eligibility information of a transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/capabilities/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 22:07:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"125"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"institution_supported_networks\": {\n        \"rtp\": {\n            \"credit\": true\n        }\n    },\n    \"request_id\": \"XwH52EtzwW0fy44\"\n}"}],"_postman_id":"53fac587-5198-4da8-9d61-fffad5492445"},{"name":"Create a transfer intent object","id":"ded0561e-d182-463f-bd4a-adeb8b12b77f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"mode\": \"PAYMENT\",\r\n    \"amount\": \"78.26\",\r\n    \"description\": \"Desc\",\r\n    \"ach_class\": \"ppd\",\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\r\n    \"user\": {\r\n     \"legal_name\": \"John Doe\"\r\n   }\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/intent/create","description":"<p>This endpoint is used to generate a transfer intent object and invoke the Transfer UI.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that</td>\n</tr>\n<tr>\n<td>mode</td>\n<td>string</td>\n<td>Yes</td>\n<td>The direction of the flow of transfer funds</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>string</td>\n<td>Yes</td>\n<td>The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\")</td>\n</tr>\n<tr>\n<td>ach_class</td>\n<td>string</td>\n<td>Yes</td>\n<td>Specifies the use case of the transfer. Required for transfers on an ACH network</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>string</td>\n<td>Yes</td>\n<td>A description for the underlying transfer. Maximum of 15, Minimun 0 characters.</td>\n</tr>\n<tr>\n<td>User</td>\n<td>object</td>\n<td>Yes</td>\n<td>The legal name and other information for the account holder.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","intent","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"905a07ed-3311-4a8f-b069-6305213bcb16","name":"Create a transfer intent object","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\r\n    \"mode\": \"PAYMENT\",\r\n    \"amount\": \"78.26\",\r\n    \"description\": \"Desc\",\r\n    \"ach_class\": \"ppd\",\r\n    \"origination_account_id\": \"9381512d-d175-e381-a79f-c9a02da4e3cc\",\r\n    \"user\": {\r\n     \"legal_name\": \"John Doe\"\r\n   }\r\n\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/intent/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 22:51:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"379"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"NiF8UMo1wuNVDYC\",\n    \"transfer_intent\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"78.26\",\n        \"created\": \"2024-11-23T22:51:40.435440076Z\",\n        \"description\": \"Desc\",\n        \"funding_account_id\": \"\",\n        \"id\": \"ff4f1b17-6dee-587a-2e26-e7f4b4093d6c\",\n        \"iso_currency_code\": \"USD\",\n        \"mode\": \"PAYMENT\",\n        \"network\": \"same-day-ach\",\n        \"origination_account_id\": \"\",\n        \"status\": \"PENDING\",\n        \"user\": {\n            \"address\": null,\n            \"email_address\": null,\n            \"legal_name\": \"John Doe\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"ded0561e-d182-463f-bd4a-adeb8b12b77f"},{"name":"Retrieve more information about a transfer intent","id":"eb5c7426-e75c-4915-871a-4a46934a894c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_intent_id\": \"ff4f1b17-6dee-587a-2e26-e7f4b4093d6c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/intent/get","description":"<p>This endpoint retrieves more information about a transfer intent.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>transfer_intent_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid's unique identifier for a transfer intent object.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","intent","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b839141e-78be-4577-aa94-c392e7ee443e","name":"Retrieve more information","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"transfer_intent_id\": \"ff4f1b17-6dee-587a-2e26-e7f4b4093d6c\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/intent/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 23:00:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"432"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"pL0ZtRWiu3I5IAr\",\n    \"transfer_intent\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"78.26\",\n        \"authorization_decision\": null,\n        \"authorization_decision_rationale\": null,\n        \"created\": \"2024-11-23T22:51:40.43544Z\",\n        \"description\": \"Desc\",\n        \"failure_reason\": null,\n        \"funding_account_id\": \"\",\n        \"guarantee_decision\": null,\n        \"guarantee_decision_rationale\": null,\n        \"id\": \"ff4f1b17-6dee-587a-2e26-e7f4b4093d6c\",\n        \"iso_currency_code\": \"USD\",\n        \"mode\": \"PAYMENT\",\n        \"network\": \"same-day-ach\",\n        \"origination_account_id\": \"\",\n        \"status\": \"PENDING\",\n        \"transfer_id\": null,\n        \"user\": {\n            \"address\": null,\n            \"email_address\": null,\n            \"legal_name\": \"John Doe\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"eb5c7426-e75c-4915-871a-4a46934a894c"},{"name":"Migrate account into Transfers","id":"b32032ff-b0ff-4eb1-bda1-bbcae1463538","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\",\r\n   \"account_number\": \"123456789\",\r\n   \"routing_number\": \"111000025\",\r\n   \"account_type\": \"savings\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/migrate_account","description":"<p>This endpoint is used to migrate known account and routing numbers to Plaid Items. This endpoint is also required when adding an Item for use with wire transfers; if you intend to create wire transfers on this account, you must provide <code>wire_routing_number</code>.</p>\n<p><strong>NOTE:</strong> You can get routing numbers in Plaid's sandbox environment which can use for testing.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>account_number</td>\n<td>string</td>\n<td>Yes</td>\n<td>The user's account number.</td>\n</tr>\n<tr>\n<td>routing_number</td>\n<td>string</td>\n<td>Yes</td>\n<td>The user's routing number.</td>\n</tr>\n<tr>\n<td>wire_routing_number</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of the bank account (checking or savings).</td>\n</tr>\n<tr>\n<td>account_type</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of the bank account (checking or savings).</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","migrate_account"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8aefebfe-c979-47ad-bd57-49fdacb9e6ba","name":"migrate account into transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"{{client_id}}\",\r\n   \"secret\": \"{{your_secret}}\",\r\n   \"account_number\": \"123456789\",\r\n   \"routing_number\": \"111000025\",\r\n   \"account_type\": \"savings\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/migrate_account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 23 Nov 2024 23:34:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"165"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"access-sandbox-f0ca3474-caf1-47c5-aca0-6d6d2fb3a3dd\",\n    \"account_id\": \"wPLzvNqRLdHV6y4kxyyGSyxbzVqZgXsEWXved\",\n    \"request_id\": \"xjP4t4QZ7p2Xuv7\"\n}"}],"_postman_id":"b32032ff-b0ff-4eb1-bda1-bbcae1463538"}],"id":"186fce28-af3c-4801-a5a0-11d79953ef9a","description":"<p>API reference for Transfer account linking endpoints</p>\n","_postman_id":"186fce28-af3c-4801-a5a0-11d79953ef9a","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Recurring Transfer","item":[{"name":"Create a recurring transfer","id":"5a0198b4-3204-484f-b684-c79c80cd755e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\" ,\r\n    \"type\": \"credit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"12.34\",\r\n   \"ach_class\": \"ppd\",\r\n   \"idempotency_key\": \"12345\",\r\n   \"description\": \"payment\",\r\n   \"schedule\": {\r\n     \"start_date\": \"2024-11-25\",\r\n     \"end_date\": \"2024-11-30\",\r\n     \"interval_unit\": \"week\",\r\n     \"interval_count\": 1,\r\n     \"interval_execution_day\": 5\r\n   },\r\n   \"user\": {\r\n     \"legal_name\": \"Anne Charleston\",\r\n     \"email_address\": \"acharleston@email.com\",\r\n     \"phone_number\": \"510-555-0128\"\r\n}\r\n\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/create","description":"<p>This endpoint is used to initiate a new recurring transfer.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Yes</td>\n<td>The access token associated with the Item data is being requested for</td>\n</tr>\n<tr>\n<td>idempotency_key</td>\n<td>string</td>\n<td>Yes</td>\n<td>A random key provided by the client, per unique recurring transfer. Maximum of 50 characters.</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited</td>\n</tr>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>Yes</td>\n<td>The type of transfer. This will be either debit or credit.</td>\n</tr>\n<tr>\n<td>network</td>\n<td>string</td>\n<td>Yes</td>\n<td>The network or rails used for the transfer.</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>string</td>\n<td>Yes</td>\n<td>The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\")</td>\n</tr>\n<tr>\n<td>ach_class</td>\n<td>string</td>\n<td>Yes</td>\n<td>Specifies the use case of the transfer.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Yes</td>\n<td>The description of the recurring transfer.</td>\n</tr>\n<tr>\n<td>user_present</td>\n<td>bolean</td>\n<td>No</td>\n<td>If the end user is initiating the specific transfer themselves via an interactive UI, this should be true; for automatic recurring payments where the end user is not actually initiating each individual transfer, it should be false.</td>\n</tr>\n<tr>\n<td>schedule</td>\n<td>object</td>\n<td>Yes</td>\n<td>The schedule that the recurring transfer will be executed on.  <br />View object…</td>\n</tr>\n<tr>\n<td>test_clock_id</td>\n<td>string</td>\n<td>No</td>\n<td>Plaid’s unique identifier for a test clock</td>\n</tr>\n<tr>\n<td>user</td>\n<td>string</td>\n<td>Yes</td>\n<td>The legal name and other information for the account holder</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","recurring","create"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"446ac254-6ccc-42f2-8e78-15de016df523","name":"create a recurring trasfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"access_token\": \"{{access_token}}\",\r\n    \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\" ,\r\n    \"type\": \"credit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"12.34\",\r\n   \"ach_class\": \"ppd\",\r\n   \"idempotency_key\": \"12345\",\r\n   \"description\": \"payment\",\r\n   \"schedule\": {\r\n     \"start_date\": \"2024-11-25\",\r\n     \"end_date\": \"2024-11-30\",\r\n     \"interval_unit\": \"week\",\r\n     \"interval_count\": 1,\r\n     \"interval_execution_day\": 5\r\n   },\r\n   \"user\": {\r\n     \"legal_name\": \"Anne Charleston\",\r\n     \"email_address\": \"acharleston@email.com\",\r\n     \"phone_number\": \"510-555-0128\"\r\n}\r\n\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 09:58:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"479"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"decision\": \"approved\",\n    \"recurring_transfer\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"12.34\",\n        \"created\": \"2024-11-25T09:56:25.296075Z\",\n        \"description\": \"payment\",\n        \"funding_account_id\": \"\",\n        \"iso_currency_code\": \"USD\",\n        \"network\": \"ach\",\n        \"next_origination_date\": \"2024-11-29\",\n        \"origination_account_id\": \"\",\n        \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\",\n        \"schedule\": {\n            \"end_date\": \"2024-11-30\",\n            \"interval_count\": 1,\n            \"interval_execution_day\": 5,\n            \"interval_unit\": \"week\",\n            \"start_date\": \"2024-11-25\"\n        },\n        \"status\": \"active\",\n        \"transfer_ids\": null,\n        \"type\": \"credit\",\n        \"user\": {\n            \"address\": null,\n            \"email_address\": \"acharleston@email.com\",\n            \"legal_name\": \"Anne Charleston\",\n            \"phone_number\": \"510-555-0128\"\n        }\n    },\n    \"request_id\": \"22AV8DFNA7xCc7V\"\n}"}],"_postman_id":"5a0198b4-3204-484f-b684-c79c80cd755e"},{"name":"Cancel a recurring transfer","id":"16e6d382-242a-4207-b049-0d4f8b226d41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/cancel","description":"<p>This endpoint is used to cancel a recurring transfer. Scheduled transfer that hasn't been submitted to bank will be cancelled.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>recurring_transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a recurring transfer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","recurring","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"27624794-bcd7-4f20-8b36-5e840cd6d8c3","name":"Cancel a recurring transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 10:08:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"61"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"request_id\": \"nkZRFSwInzfzJg5\"\n}"}],"_postman_id":"16e6d382-242a-4207-b049-0d4f8b226d41"},{"name":"Retrieve a recurring transfer","id":"8b335cc4-75e6-4824-b361-1b1607fa9d1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\"  \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/get","description":"<p>This endpoint fetches information about the recurring transfer corresponding to the given <code>recurring_transfer_id</code>.</p>\n<h3 id=\"request-fields\">Request fields</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>recurring_transfer_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Plaid’s unique identifier for a recurring transfer.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","recurring","get"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c7be2f5f-ed25-420e-a660-67add770675b","name":"Retrieve a recurring transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\"  \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 10:13:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"467"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurring_transfer\": {\n        \"account_id\": \"ylowZjz5jaUW7K7aG4betxXx5e9lk7C4veLDn\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"12.34\",\n        \"created\": \"2024-11-25T09:56:25.296075Z\",\n        \"description\": \"payment\",\n        \"funding_account_id\": \"\",\n        \"iso_currency_code\": \"USD\",\n        \"network\": \"ach\",\n        \"next_origination_date\": null,\n        \"origination_account_id\": \"\",\n        \"recurring_transfer_id\": \"1adce128-f7ea-1281-b3e3-411433783649\",\n        \"schedule\": {\n            \"end_date\": \"2024-11-30\",\n            \"interval_count\": 1,\n            \"interval_execution_day\": 5,\n            \"interval_unit\": \"week\",\n            \"start_date\": \"2024-11-25\"\n        },\n        \"status\": \"cancelled\",\n        \"transfer_ids\": null,\n        \"type\": \"credit\",\n        \"user\": {\n            \"address\": null,\n            \"email_address\": \"acharleston@email.com\",\n            \"legal_name\": \"Anne Charleston\",\n            \"phone_number\": \"510-555-0128\"\n        }\n    },\n    \"request_id\": \"nO27ZLdrcmWJDDA\"\n}"}],"_postman_id":"8b335cc4-75e6-4824-b361-1b1607fa9d1b"},{"name":"List recurring transfers","id":"3bfacd05-d9dc-43fe-9095-44bffd794611","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"start_time\":\"2022-09-29T20:35:49Z\",\r\n    \"end_time\": \"2022-10-29T20:35:49Z\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/list","description":"<p>This endpoint to see a list of all your recurring transfers and their statuses.</p>\n<h3 id=\"request-fields\"><strong>Request fields</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field Name</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Required</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API client_id</td>\n</tr>\n<tr>\n<td>secret</td>\n<td>string</td>\n<td>Yes</td>\n<td>Your Plaid API secret</td>\n</tr>\n<tr>\n<td>start_time</td>\n<td>string</td>\n<td>Yes</td>\n<td>The start datetime of recurring transfer (RFC 3339 format)</td>\n</tr>\n<tr>\n<td>end_time</td>\n<td>string</td>\n<td>Yes</td>\n<td>The end datetime of recurring transfer (RFC 3339 format)</td>\n</tr>\n<tr>\n<td>count</td>\n<td>integer</td>\n<td>Yes</td>\n<td>The maximum number of recurring transfers to return.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}},"urlObject":{"path":["transfer","recurring","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f7302116-8ef9-434e-95db-e9c50986e019","name":"List recurring event","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \r\n    \"client_id\": \"{{client_id}}\",\r\n    \"secret\": \"{{your_secret}}\",\r\n    \"start_time\":\"2022-09-29T20:35:49Z\",\r\n    \"end_time\": \"2022-10-29T20:35:49Z\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/transfer/recurring/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 10:23:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"88"},{"key":"Connection","value":"keep-alive"},{"key":"content-encoding","value":"gzip"},{"key":"plaid-version","value":"2020-09-14"},{"key":"vary","value":"Accept-Encoding"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-XSS-Protection","value":"1; mode=block"}],"cookie":[],"responseTime":null,"body":"{\n    \"recurring_transfers\": null,\n    \"request_id\": \"iH9RjgH5Hb3F0UQ\"\n}"}],"_postman_id":"3bfacd05-d9dc-43fe-9095-44bffd794611"}],"id":"0779be53-2450-43fd-ae8d-bf1d564ec16c","_postman_id":"0779be53-2450-43fd-ae8d-bf1d564ec16c","description":"","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}}],"id":"716bb86c-81de-4d6f-936d-627419446c5b","_postman_id":"716bb86c-81de-4d6f-936d-627419446c5b","description":"","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}},{"name":"Glossary","item":[],"id":"8fc67726-026f-4cac-bc5a-11b25de32c98","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key Terms</strong></th>\n<th><strong>Definition</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>API</td>\n<td>Application Programming Interface</td>\n</tr>\n<tr>\n<td>ID</td>\n<td>Identifier</td>\n</tr>\n<tr>\n<td>HTTP</td>\n<td>HyperText Transfer Protocol</td>\n</tr>\n<tr>\n<td>HTTPS</td>\n<td>HyperText Transfer Protocol Secure</td>\n</tr>\n<tr>\n<td>TLS</td>\n<td>Transport Layer Security</td>\n</tr>\n<tr>\n<td>ACH</td>\n<td>Automated Clearing House</td>\n</tr>\n<tr>\n<td>EFT</td>\n<td>Electronic Funds Transfer</td>\n</tr>\n<tr>\n<td>BACS</td>\n<td>Bankers' Automated Clearing Services</td>\n</tr>\n<tr>\n<td>IBAN</td>\n<td>International Bank Account Number</td>\n</tr>\n<tr>\n<td>SIC</td>\n<td>Swiss Interbank Clearing</td>\n</tr>\n<tr>\n<td>ISO</td>\n<td>International Organization for Standardization</td>\n</tr>\n<tr>\n<td>RFC</td>\n<td>Request for Comments</td>\n</tr>\n<tr>\n<td>MFA</td>\n<td>Multi-Factor Authentication</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8fc67726-026f-4cac-bc5a-11b25de32c98","auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"},"isInherited":true,"source":{"_postman_id":"73c51b62-5ce6-4d32-936b-427d372586b1","id":"73c51b62-5ce6-4d32-936b-427d372586b1","name":"PLAID API DOCUMENTATION","type":"collection"}}}],"auth":{"type":"basic","basic":{"password":"{{your_secret}}","username":"{{client_id}}"}},"event":[{"listen":"prerequest","script":{"id":"cc33e325-3300-4bab-917f-1c2554981a1a","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"1d855893-4f5a-4d84-ad4c-eda0204f4f08","type":"text/javascript","packages":{},"exec":[""]}}]}