{"info":{"_postman_id":"4463529a-2bff-4b17-a596-4faf70edb5d5","name":"Plaid API Documentation 📝","description":"<html><head></head><body><p>Welcome to version 4 (v4) of the Plaid API Documentation. This documentation will help you get started with the Plaid API.</p>\n<p>The Plaid API allows developers to access and interact with banking and other financial data. Some common use cases include:</p>\n<ul>\n<li><p><strong>Accessing financial data</strong>: Developers can access financial data from banks, credit card companies, and other financial institutions.</p>\n</li>\n<li><p><strong>Initiating transactions</strong>: Developers can initiate transactions such as money transfers.</p>\n</li>\n</ul>\n<p>Plaid API uses the HTTP protocol, and requests are made using the appropriate HTTP methods. The data is typically sent and received in JSON format.</p>\n<p><em>The next few sections of this introductory page will guide you on obtaining the necessary credentials to start experimenting with the PLAID API.</em></p>\n<h1 id=\"api-versioning\">API Versioning 🔢</h1>\n<p>This is the 4th and latest version of the Plaid API, known as version 2020-09-14.</p>\n<p>This version includes several changes to improve authentication, streamline and simplify the API, and improve international support.</p>\n<p>Below are a complete list of changes that have been added to this version.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Key Changes</strong></th>\n<th><strong>Details</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>The public_key has been fully removed from the API to improve authentication.</td>\n<td>Endpoints that previously accepted a public_key for authentication, namely /institutions/get_by_id and /institutions/search, now require a client_id and secret for authentication instead.</td>\n</tr>\n<tr>\n<td>/item/remove no longer returns a removed boolean.</td>\n<td>This field created developer confusion, because it was never possible for it to return false. A failed /item/remove call will result in an error being returned instead.</td>\n</tr>\n<tr>\n<td>Several undocumented and unused fields have been removed.</td>\n<td>from the institution object returned by the institutions endpoints /institutions/get, /institutions/get_by_id, and /institutions/search. The removed fields are: input_spec, credentials, include_display_data, has_mfa, mfa, and mfa_code_type.</td>\n</tr>\n<tr>\n<td>The institutions endpoints /institutions/get, /institutions/get_by_id, and /institutions/search now require the use of a country_codes parameter and no longer use US as a default value if country_codes is not specified.</td>\n<td>This behavior caused confusion and unexpected behavior for non-US developers. As part of this change, the country_codes parameter has been moved out of the options object and is now a top-level parameter.</td>\n</tr>\n<tr>\n<td>To support international payments, the response schema for the partner-only /processor/auth/get endpoint has changed.</td>\n<td>This release brings the response for /processor/auth/get in line with the /auth/get response, allowing Plaid partners to extend support for using non-ACH payment methods, such as EFT payments (Canada) or SEPA credit and direct debit (Europe). Accommodating this change does not require any code changes from Plaid developers who use partnership integrations, only from the Plaid partners themselves.</td>\n</tr>\n</tbody>\n</table>\n</div><p>To see a complete log of the previous versions, please see the <a href=\"https://plaid.com/docs/changelog/\">changelog </a> section of the general Plaid documentation.</p>\n<h1 id=\"obtaining-credentials\">Obtaining credentials 🔑</h1>\n<h4 id=\"client_id-and-secret\"><strong>Client_id and Secret</strong></h4>\n<p>Before using the API, you need to obtain an API key. Plaid has three environments:</p>\n<ul>\n<li><p><strong>Sandbox</strong>: Supports only test items.</p>\n</li>\n<li><p><strong>Development</strong>: Supports up to 100 live items using real data.</p>\n</li>\n<li><p><strong>Production</strong>: Where all activity is billed.</p>\n</li>\n</ul>\n<p>This documentation is focused on the Sandbox environment where you can test and experiment with free data.</p>\n<p>Below is a step-by-step guide on how to obtain your Sandbox Credentials</p>\n<ol>\n<li><p>Navigate to <a href=\"https://my.plaid.com/sign-up\">sign up on plaid</a> to create a plaid account</p>\n</li>\n<li><p>Fill in your data in the required fields, then verify your account to log in to your dashboard.</p>\n</li>\n<li><p>On your dashboard, navigate to your account at the top-right corner and click to select the \"keys\" option.</p>\n</li>\n<li><p>You'll be asked to do a 2-factor authentication. You can either authenticate with your mobile number or with an authentication app.</p>\n</li>\n<li><p>Once you've authenticated successfully, your Sandbox Credentials will be displayed like so:</p>\n</li>\n</ol>\n<img src=\"https://content.pstmn.io/62240e61-4647-496a-888f-cba69d7bcfbd/cGxhaWQtY3JlZGVudGlhbHMtYW5ub3RlZC5wbmc=\">\n\n<p><em>Copy your</em> <code>_client_id_</code> <em>and</em> <code>_secret_</code><em>, and ensure to keep them safe. You'll always need to authenticate with them to access the Plaid APIs.</em></p>\n<h4 id=\"account_id\"><strong>account_id</strong></h4>\n<p><em>To access some part of the APIs, you'll also need an access_token credential. To create an access_token, kindly follow the steps below:</em></p>\n<ol>\n<li><p>Create a public token using the <code>/sandbox/public_token/create</code> endpoint</p>\n</li>\n<li><p>The endpoint in step one will require your <code>client_id</code> and <code>secret</code> credentials, with two additional parameters: <code>institution_id</code> and <code>initial_products</code></p>\n</li>\n<li><p>To obtain these parameters above, log in to your dashboard, and navigate to <strong>Activity</strong> on the sidebar.</p>\n</li>\n<li><p>In the drop-down menu that appears, click on <strong>status.</strong> This will display a list of institutions.</p>\n</li>\n<li><p>Select any institution of your choice. In the page containing the institution details, copy the <strong>institution_id</strong> and <strong>supported products</strong> for your <code>institution_id</code> and <code>initial_products</code> parameters.</p>\n</li>\n<li><p>Once your public token has been created, you'll have to exchange it using the <code>/item/public_token/exchange</code> endpoint for an access token. The request requires your client_id, secret, and public_token for authentication.</p>\n</li>\n<li><p>If your request is successful, it will return an access_token which you will use to make requests to other endpoints.</p>\n</li>\n</ol>\n<p><em>The next section will guide you on how to authenticate with your credentials.</em></p>\n<h1 id=\"authentication\">Authentication 🔒</h1>\n<p>To Authenticate with your Sandbox credentials, you'll need to include your client_id and secret in your request headers or body, like so:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Authentication Method</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Header (cURL)</td>\n<td>-H 'Client_id: your_client_id'  <br>-H 'Secret: your_secret_key'</td>\n</tr>\n<tr>\n<td>Body (JSON)</td>\n<td>{  <br>\"client_id\": \"your_client_id\",  <br>\"secret\": \"your_secret_key\"  <br>}</td>\n</tr>\n</tbody>\n</table>\n</div><p><em>Plaid returns data as JSON, therefore you will also have to set Content-Type to application/json in your request Header.</em></p>\n<h1 id=\"error-and-status-codes\">Error and Status Codes ⚠️</h1>\n<p>Plaid API returns standard HTTP status codes to indicate the outcome of a request. Additionally, the response body may include an error object with more details.</p>\n<p>Here are some standard error status codes and their meanings:</p>\n<h4 id=\"general-http-status-codes\">General HTTP Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Status Name</strong></th>\n<th><strong>Meaning</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200</td>\n<td>Request Successful!</td>\n<td>The intended action was carried out successfully</td>\n</tr>\n<tr>\n<td>201</td>\n<td>Okay</td>\n<td>The resource was successfully created.</td>\n</tr>\n<tr>\n<td>400</td>\n<td>Bad Request</td>\n<td>The request contains invalid parameters</td>\n</tr>\n<tr>\n<td>401</td>\n<td>Unauthorized</td>\n<td>The request lacks valid credentials.</td>\n</tr>\n<tr>\n<td>404</td>\n<td>Not Found</td>\n<td>The requested resource was not found.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"plaid-specific-status-codes\">Plaid-Specific Status Codes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Error Code</strong></th>\n<th><strong>Error Type</strong></th>\n<th><strong>Meaning</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>INVALID_ACCESS_TOKEN</td>\n<td>INVALID_INPUT</td>\n<td>Could not find matching access token.</td>\n</tr>\n<tr>\n<td>INVALID_PRODUCT</td>\n<td>INVALID_INPUT</td>\n<td>some products cannot be included in initial_products:</td>\n</tr>\n<tr>\n<td>MISSING_FIELDS</td>\n<td>INVALID_REQUEST</td>\n<td>The following required fields are missing.</td>\n</tr>\n<tr>\n<td>INSTITUTION_NOT_AVAILABLE</td>\n<td>INSTITUTION_ERROR</td>\n<td>The Institution is not currently responding to this request</td>\n</tr>\n<tr>\n<td>SANDBOX_PRODUCT_NOT_ENABLED</td>\n<td>SANDBOX_ERROR</td>\n<td>The product is not enabled on this item</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"rate-limits-⏳\">Rate Limits ⏳</h2>\n<p>To help manage the volume of requests made by thousands of developers daily, Plaid places limits on the number of requests that can be made. These limits help to provide reliable and scalable APIs for developers.</p>\n<p>Rate limits are applied based on which Plaid environment credentials you use. When these limits are exceeded, an error is returned.</p>\n<p>To learn about these errors please see the table below for an overview of Rate limits for the sandbox environment.</p>\n<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><a href=\"https://plaid.com/docs/api/products/auth/#authget\"><code>/auth/get</code></a></td>\n<td>15 per minute</td>\n<td>12,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/identity/#identityget\"><code>/identity/get</code></a></td>\n<td>15 per minute</td>\n<td>2,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/identity-verification/#identity_verificationcreate\"><code>/identity_verification/create</code></a></td>\n<td>N/A</td>\n<td>200 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/identity-verification/#identity_verificationget\"><code>/identity_verification/get</code></a></td>\n<td>N/A</td>\n<td>500 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/identity-verification/#identity_verificationlist\"><code>/identity_verification/list</code></a></td>\n<td>N/A</td>\n<td>400 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/identity-verification/#identity_verificationretry\"><code>/identity_verification/retry</code></a></td>\n<td>N/A</td>\n<td>200 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/items/#itemget\"><code>/item/get</code></a></td>\n<td>15 per minute</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/items/#itemremove\"><code>/item/remove</code></a></td>\n<td>30 per minute</td>\n<td>2,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/processors/#processortokencreate\"><code>/processor/token/create</code></a></td>\n<td>N/A</td>\n<td>500 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transactions/#transactionsrecurringget\"><code>/transactions/recurring/get</code></a></td>\n<td>20 per minute</td>\n<td>1,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transactions/#transactionsrefresh\"><code>/transactions/refresh</code></a></td>\n<td>2 per minute</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transactions/#transactionssync\"><code>/transactions/sync</code></a></td>\n<td>50 per minute</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/initiating-transfers/#transferauthorizationcreate\"><code>/transfer/authorization/create</code></a></td>\n<td>100 per hour</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/initiating-transfers/#transfercancel\"><code>/transfer/cancel</code></a></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/initiating-transfers/#transfercreate\"><code>/transfer/create</code></a></td>\n<td>N/A</td>\n<td>2,500 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/reading-transfers/#transfereventsync\"><code>/transfer/event/sync</code></a></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/account-linking/#transferintentcreate\"><code>/transfer/intent/create</code></a></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/account-linking/#transfermigrate_account\"><code>/transfer/migrate_account</code></a></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/recurring-transfers/#transferrecurringcancel\"><code>/transfer/recurring/cancel</code></a></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/recurring-transfers/#transferrecurringcreate\"><code>/transfer/recurring/create</code></a></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/refunds/#transferrefundcancel\"><code>/transfer/refund/cancel</code></a></td>\n<td>N/A</td>\n<td>250 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/transfer/refunds/#transferrefundcreate\"><code>/transfer/refund/create</code></a></td>\n<td>N/A</td>\n<td>5,000 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationrecipientcreate\"><code>/payment_initiation/recipient/create</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationrecipientget\"><code>/payment_initiation/recipient/get</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationrecipientlist\"><code>/payment_initiation/recipient/list</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationpaymentcreate\"><code>/payment_initiation/payment/create</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationpaymentget\"><code>/payment_initiation/payment/get</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationpaymentlist\"><code>/payment_initiation/payment/list</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationpaymentreverse\"><code>/payment_initiation/payment/reverse</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationconsentcreate\"><code>/payment_initiation/consent/create</code></a></td>\n<td>N/A</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationconsentget\"><code>/payment_initiation/consent/get</code></a></td>\n<td>N/A</td>\n<td>240 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationconsentrevoke\"><code>/payment_initiation/consent/revoke</code></a></td>\n<td>N/A</td>\n<td>100 per minute</td>\n</tr>\n<tr>\n<td><a href=\"https://plaid.com/docs/api/products/payment-initiation/#payment_initiationconsentpaymentexecute\"><code>/payment_initiation/consent/payment/execute</code></a></td>\n<td>N/A</td>\n<td>100 per minute (5 per consent)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"endpoints-overview\">Endpoints Overview 🌐</h1>\n<p>You will make requests to several endpoints on this documentation. The table below gives an overview of the endpoints and their information.</p>\n<h4 id=\"base-url\">Base URL</h4>\n<p><a href=\"https://sandbox.plaid.com\"><code><b>https://sandbox.plaid.com</b></code></a></p>\n<h4 id=\"public-token-endpoints\"><strong>Public Token Endpoints</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>/sandbox/public_token/create</td>\n<td>Endpoint to create a valid public_token for an arbitrary institution ID, initial products, and test credentials.</td>\n</tr>\n<tr>\n<td>/item/public_token/exchange</td>\n<td>Endpoint to exchange public token for an access token.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"payments-and-funding-endpoints\"><strong>Payments and Funding Endpoints</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Endpoint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>/auth/get</td>\n<td>Endpoint to retrieve bank account and identification numbers.</td>\n</tr>\n<tr>\n<td>/bank_transfer/event/list</td>\n<td>Endpoint to get a list of bank transfer events</td>\n</tr>\n<tr>\n<td>/bank_transfer/event/sync</td>\n<td>Endpoint to request or sync bank transfer events.</td>\n</tr>\n<tr>\n<td>/accounts/balance/get</td>\n<td>Endpoint to retrieve real-time balance data.</td>\n</tr>\n<tr>\n<td>/identity/get</td>\n<td>Endpoint to fetch identity data</td>\n</tr>\n<tr>\n<td>/identity/match</td>\n<td>Endpoint to match client Identity with Bank Identity</td>\n</tr>\n<tr>\n<td>/identity/documents/uploads/get</td>\n<td>Endpoint to retrieve identity details when using Identity Document Upload.</td>\n</tr>\n<tr>\n<td>/signal/evaluate</td>\n<td>Endpoint to retrieve Signal scores.</td>\n</tr>\n<tr>\n<td>/signal/decision/report</td>\n<td>Endpoint to report whether you initiated a transaction.</td>\n</tr>\n<tr>\n<td>/signal/return/report</td>\n<td>endpoint to report a returned transaction that was previously sent to the /signal/evaluate endpoint.</td>\n</tr>\n<tr>\n<td>/signal/prepare</td>\n<td>Endpoint to add Signal to a newly linked item.</td>\n</tr>\n<tr>\n<td>/transfer/authorization/create</td>\n<td>Endpoint to create a transfer authorization</td>\n</tr>\n<tr>\n<td>/transfer/authorization/cancel</td>\n<td>Endpoint to cancel a transfer authorization</td>\n</tr>\n<tr>\n<td>/transfer/create</td>\n<td>Endpoint to create a transfer.</td>\n</tr>\n<tr>\n<td>/transfer/cancel</td>\n<td>Endpoint to cancel a transfer</td>\n</tr>\n<tr>\n<td>/transfer/get</td>\n<td>Endpoint to retrieve information about a transfer.</td>\n</tr>\n<tr>\n<td>/transfer/list</td>\n<td>Endpoint to retrieve a list of transfers and their statuses.</td>\n</tr>\n<tr>\n<td>/transfer/event/list</td>\n<td>Endpoint to retrieve a list of transfer events</td>\n</tr>\n<tr>\n<td>/transfer/event/sync</td>\n<td>Endpoint to sync transfer events</td>\n</tr>\n<tr>\n<td>/transfer/sweep/get</td>\n<td>Endpoint to retrieve information about a sweep</td>\n</tr>\n<tr>\n<td>/transfer/sweep/list</td>\n<td>Endpoint to retrieve a list of sweeps</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"API Versioning 🔢","slug":"api-versioning"},{"content":"Obtaining credentials 🔑","slug":"obtaining-credentials"},{"content":"Authentication 🔒","slug":"authentication"},{"content":"Error and Status Codes ⚠️","slug":"error-and-status-codes"},{"content":"Endpoints Overview 🌐","slug":"endpoints-overview"}],"owner":"37667361","collectionId":"4463529a-2bff-4b17-a596-4faf70edb5d5","publishedId":"2sAYBUCs2C","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-11-23T13:46:09.000Z"},"item":[{"name":"Public token 🛂","item":[{"name":"Create public token","id":"4a56baa5-1750-4861-90e1-0a35c1411d84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Transfer-Encoding","value":"application/json","description":"<p>specifies that the request body is in JSON format.</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": ,\r\n    \"institution_id\": ,\r\n    \"initial_products\": [\"assets\", \"auth\",\"transactions\" ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/sandbox/public_token/create","description":"<p>This endpoint creates a valid <code>public_token</code> for an arbitrary institution ID, initial products, and test credentials.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>client_id</code></strong></td>\n<td>Required</td>\n<td>Your Plaid API client_id.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><strong><code>secret</code></strong></td>\n<td>Required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>institution_id</code></td>\n<td>Required</td>\n<td>A unique ID to identify a banking institution</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>initial_products</code></td>\n<td>Required</td>\n<td>Products supported by the institution</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["sandbox","public_token","create"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"d2daacc4-d20a-42bb-a170-39a69baa72c9","name":"Create public token","originalRequest":{"method":"POST","header":[{"key":"Content-Transfer-Encoding","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": ,\r\n    \"institution_id\": ,\r\n    \"initial_products\": [\"assets\", \"auth\",\"transactions\" ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/sandbox/public_token/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 16:39:24 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\": \"public-sandbox-d9d24b87-00f1-4de5-bde4-3b3151047920\",\n    \"request_id\": \"10PxgPIbChiOQdW\"\n}"}],"_postman_id":"4a56baa5-1750-4861-90e1-0a35c1411d84"},{"name":"Exchange public token","id":"5a5d2fb1-b8ce-4444-8cf8-08a14b58feeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"6736b2bcda8e7b00196ad1a7\",\r\n    \"secret\": \"84bc9805928a2301f5d7bc21b820a0\",\r\n    \"public_token\": \"public-sandbox-2ccbaa62-669e-48e1-8530-b309350f3f0f\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/item/public_token/exchange","description":"<p>This endpoint allows you to exchange a public token for an access token.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>client_id</code></strong></td>\n<td>Required</td>\n<td>Your Plaid API client_id.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><strong><code>secret</code></strong></td>\n<td>Required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>public token</code></td>\n<td>Required</td>\n<td>Your public_token, obtained from requesting to /sandbox/item/public_token/create.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["item","public_token","exchange"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"b56cfab5-930c-4e3b-b0e2-7540a9d7af7e","name":"Exchange public token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": \"6736b2bcda8e7b00196ad1a7\",\r\n    \"secret\": \"84bc9805928a2301f5d7bc21b820a0\",\r\n    \"public_token\": \"public-sandbox-d9d24b87-00f1-4de5-bde4-3b3151047920\"\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/item/public_token/exchange"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Mon, 25 Nov 2024 16:41:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"167"},{"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-241d4d34-fa5d-4224-b2a0-5fc4311b25d9\",\n    \"item_id\": \"oeeKEzb5bdFrDPr4mNjvHyanaQyRgXhRraP8y\",\n    \"request_id\": \"JVP6XGmaTU94lSm\"\n}"}],"_postman_id":"5a5d2fb1-b8ce-4444-8cf8-08a14b58feeb"}],"id":"32fa97ca-139a-42d0-bc89-c4d75f495edd","description":"<p>This section contains endpoints for creating an access token.</p>\n","_postman_id":"32fa97ca-139a-42d0-bc89-c4d75f495edd"},{"name":"Payments and funding 💰","item":[{"name":"Auth 🛡️","item":[{"name":"Retrieve auth data","id":"efb2dcd7-aa94-46f0-8555-ffa3568ebbaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com//auth/get","description":"<p>This endpoint returns bank account and identification numbers.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong><code>client_id</code></strong></td>\n<td>Required</td>\n<td>User's plaid-specific Id used to authenticate request</td>\n<td>String</td>\n</tr>\n<tr>\n<td><strong><code>secret</code></strong></td>\n<td>Required</td>\n<td>User's plaid-specific token used to authenticate request</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>Required</td>\n<td>The access token associated with item data you're requesting for.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_ids</code></td>\n<td>Optional</td>\n<td>A list of account_ids to retrieve for the Item.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["","auth","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"89f5d94e-becc-4c33-9e57-e360de53d221","name":"Retrieve auth data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com//auth/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 08:55:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1587"},{"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\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\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\": \"vvDvronz5niqWPNlNbbduEkAB69VBauqZrzoB\",\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\": \"RqMqepDLVDUDXA3V3qq1cdVaLXxeLJuao8lz3\",\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\": \"6p6pwGEMmEF4gQLJLDDotnjMrpG9r8f8P49rX\",\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\": \"XxGxNAWl1WuwoMNQNxxgfQdj7nbG7BhbvG65E\",\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\": \"DJqJrkD3RDi1GKZdZJJLCV3xqnE5qNF3LbwzJ\",\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\": \"VBLBXED81DFBrDGaG88WCL3dyxPDyBt9Zzm6Z\",\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\": \"wvlvzkmBAmizq5LRLAAasZElReMwRjiP1JNgz\",\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\": \"5kbkwAmZxmSyGPeVeppviVX5pLv3pRF5Q9wxy\",\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\": \"JJxJGjDPaDiwJ9n6nqqof9w1KWmvKdtBem4b6\",\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\": \"kvDveNW1bWi4aqJmJggNtl6VR8WnRBcL1kQx5\",\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\": \"l6D6XPnLWncn1KJqJBBPSVGn9bPQ9XFpmlwLV\",\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            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"rvDvLMnlRni5gdr9reezCEG1E1zABlcldoPL9\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"numbers\": {\n        \"ach\": [\n            {\n                \"account\": \"1111222233330000\",\n                \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n                \"routing\": \"011401533\",\n                \"wire_routing\": \"021000021\"\n            },\n            {\n                \"account\": \"1111222233331111\",\n                \"account_id\": \"vvDvronz5niqWPNlNbbduEkAB69VBauqZrzoB\",\n                \"routing\": \"011401533\",\n                \"wire_routing\": \"021000021\"\n            }\n        ],\n        \"bacs\": [],\n        \"eft\": [],\n        \"international\": []\n    },\n    \"request_id\": \"AM0frQNyIIjrh79\"\n}"}],"_postman_id":"efb2dcd7-aa94-46f0-8555-ffa3568ebbaa"},{"name":"List bank transfer","id":"3503fc48-f3fe-4c5b-be18-d886766522c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"client_id\": ,\r\n  \"secret\": ,\r\n  \"account_id\": ,\r\n  \"bank_transfer_type\": \"debit\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/bank_transfer/event/list","description":"<p>This endpoint allows you to get a list of bank transfer events</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_id</code></td>\n<td>required</td>\n<td>The account ID you want to get the events for all transactions from</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>bank_transfer_id</code></td>\n<td>optional</td>\n<td>Plaid’s unique identifier for a bank transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>bank_transfer_type</code></td>\n<td>optional</td>\n<td>The type of bank transfer. Either debit or credits</td>\n<td>String</td>\n</tr>\n<tr>\n<td>event_types</td>\n<td>optional</td>\n<td>Filter events by event type.</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["bank_transfer","event","list"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"b3237722-d232-4c2d-b02f-a581f8deb0af","name":"List bank transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n \"client_id\": ,\r\n  \"secret\": ,\r\n  \"account_id\": ,\r\n  \"bank_transfer_type\": \"debit\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/bank_transfer/event/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 26 Nov 2024 07:18:51 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\": \"w2J5353sNKayFMy\"\n}"}],"_postman_id":"3503fc48-f3fe-4c5b-be18-d886766522c3"},{"name":"Sync bank transfer events","id":"1b37b180-ea48-45b6-8521-213e7795dc93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"6736b2bcda8e7b00196ad1a7\",\r\n   \"secret\": \"84bc9805928a2301f5d7bc21b820a0\",\r\n   \"after_id\": 15,\r\n   \"count\": 10\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/bank_transfer/event/sync","description":"<p>This endpoint allows you to request up to the next 25 Paid-initiated bank transfer events.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>after_id</code></td>\n<td>required</td>\n<td>The latest (largest) event_id fetched via the sync endpoint, or 0 initially.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>optional</td>\n<td>The maximum number of bank transfer events to return.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["bank_transfer","event","sync"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"8264efd2-dbbf-43dd-87b4-c4fa3d7c1352","name":"Sync bank transfer events","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": \"6736b2bcda8e7b00196ad1a7\",\r\n   \"secret\": \"84bc9805928a2301f5d7bc21b820a0\",\r\n   \"after_id\": 0,\r\n   \"count\": 10\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/bank_transfer/event/sync"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 26 Nov 2024 07:21:22 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\": \"eicqTY0paS2ASHJ\"\n}"}],"_postman_id":"1b37b180-ea48-45b6-8521-213e7795dc93"}],"id":"f04aedb8-1829-43a3-baff-3770f31a6a21","description":"<p>This section contains API reference for Auth endpoints</p>\n","_postman_id":"f04aedb8-1829-43a3-baff-3770f31a6a21"},{"name":"Balance 💵","item":[{"name":"Retrieve real-time balance data","id":"068bbc12-e36d-4ab9-bf11-b4fcc0c8723d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/accounts/balance/get","description":"<p>This endpoint returns the real-time balance for each of an Item's accounts.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_ids</code></td>\n<td>optional</td>\n<td>A list of account_ids to retrieve for the Item</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["accounts","balance","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"6d9708c7-1f39-499f-9831-2cd78ca8eefe","name":"Retrieve real-time balance data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/accounts/balance/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:03:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1490"},{"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\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\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\": \"vvDvronz5niqWPNlNbbduEkAB69VBauqZrzoB\",\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\": \"RqMqepDLVDUDXA3V3qq1cdVaLXxeLJuao8lz3\",\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\": \"6p6pwGEMmEF4gQLJLDDotnjMrpG9r8f8P49rX\",\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\": \"XxGxNAWl1WuwoMNQNxxgfQdj7nbG7BhbvG65E\",\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\": \"DJqJrkD3RDi1GKZdZJJLCV3xqnE5qNF3LbwzJ\",\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\": \"VBLBXED81DFBrDGaG88WCL3dyxPDyBt9Zzm6Z\",\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\": \"wvlvzkmBAmizq5LRLAAasZElReMwRjiP1JNgz\",\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\": \"5kbkwAmZxmSyGPeVeppviVX5pLv3pRF5Q9wxy\",\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\": \"JJxJGjDPaDiwJ9n6nqqof9w1KWmvKdtBem4b6\",\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\": \"kvDveNW1bWi4aqJmJggNtl6VR8WnRBcL1kQx5\",\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\": \"l6D6XPnLWncn1KJqJBBPSVGn9bPQ9XFpmlwLV\",\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            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"rvDvLMnlRni5gdr9reezCEG1E1zABlcldoPL9\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"iUQn3au2MXKZ9BY\"\n}"}],"_postman_id":"068bbc12-e36d-4ab9-bf11-b4fcc0c8723d"}],"id":"5166873f-bb0a-4882-8e5e-f39071348b58","description":"<p>This section contains API Reference for account balance.</p>\n","_postman_id":"5166873f-bb0a-4882-8e5e-f39071348b58"},{"name":"Identity 👤","item":[{"name":"Retrieve identity data","id":"1272d168-3dd1-4445-9a92-2bdb0df90c9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/identity/get","description":"<p>This endpoint allows you to retrieve various account holder information.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_ids</code></td>\n<td>optional</td>\n<td>A list of account_ids to retrieve for the Item</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["identity","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"8acfd413-bae6-4f22-91da-e59c2b4fcf3f","name":"Retrieve identity data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/identity/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:05:04 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\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\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\": \"vvDvronz5niqWPNlNbbduEkAB69VBauqZrzoB\",\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\": \"RqMqepDLVDUDXA3V3qq1cdVaLXxeLJuao8lz3\",\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\": \"6p6pwGEMmEF4gQLJLDDotnjMrpG9r8f8P49rX\",\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\": \"XxGxNAWl1WuwoMNQNxxgfQdj7nbG7BhbvG65E\",\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\": \"DJqJrkD3RDi1GKZdZJJLCV3xqnE5qNF3LbwzJ\",\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\": \"VBLBXED81DFBrDGaG88WCL3dyxPDyBt9Zzm6Z\",\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\": \"wvlvzkmBAmizq5LRLAAasZElReMwRjiP1JNgz\",\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\": \"5kbkwAmZxmSyGPeVeppviVX5pLv3pRF5Q9wxy\",\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\": \"JJxJGjDPaDiwJ9n6nqqof9w1KWmvKdtBem4b6\",\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\": \"kvDveNW1bWi4aqJmJggNtl6VR8WnRBcL1kQx5\",\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\": \"l6D6XPnLWncn1KJqJBBPSVGn9bPQ9XFpmlwLV\",\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            \"income_verification\",\n            \"liabilities\",\n            \"recurring_transactions\",\n            \"statements\",\n            \"transactions_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"rvDvLMnlRni5gdr9reezCEG1E1zABlcldoPL9\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"tfyMTDr4dXNPoXL\"\n}"}],"_postman_id":"1272d168-3dd1-4445-9a92-2bdb0df90c9d"},{"name":"Retrieve identity match score","id":"953e9982-ce52-4ee1-9664-d1733faf5c2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/identity/match","description":"<p>This endpoint generates a match score that indicates how well the provided identity data matches the identity information on file.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>legal_name</code></td>\n<td>optional</td>\n<td>The user's full legal name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>phone_number</code></td>\n<td>optional</td>\n<td>The user's phone number.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>email_address</code></td>\n<td>optional</td>\n<td>Data about the components comprising an address.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["identity","match"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"97b06e5f-186f-462f-ab73-d812f6b4833d","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\": ,\r\n  \"secret\": ,\r\n  \"access_token\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/identity/match"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:05:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1526"},{"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\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\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\": null\n            },\n            \"subtype\": \"checking\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"vvDvronz5niqWPNlNbbduEkAB69VBauqZrzoB\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": 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            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"savings\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"RqMqepDLVDUDXA3V3qq1cdVaLXxeLJuao8lz3\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": 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            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"cd\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"6p6pwGEMmEF4gQLJLDDotnjMrpG9r8f8P49rX\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\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\": null\n            },\n            \"subtype\": \"credit card\",\n            \"type\": \"credit\"\n        },\n        {\n            \"account_id\": \"XxGxNAWl1WuwoMNQNxxgfQdj7nbG7BhbvG65E\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\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\": null\n            },\n            \"subtype\": \"money market\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"DJqJrkD3RDi1GKZdZJJLCV3xqnE5qNF3LbwzJ\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"5555\",\n            \"name\": \"Plaid IRA\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"ira\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"VBLBXED81DFBrDGaG88WCL3dyxPDyBt9Zzm6Z\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"6666\",\n            \"name\": \"Plaid 401k\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"401k\",\n            \"type\": \"investment\"\n        },\n        {\n            \"account_id\": \"wvlvzkmBAmizq5LRLAAasZElReMwRjiP1JNgz\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"7777\",\n            \"name\": \"Plaid Student Loan\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"student\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"5kbkwAmZxmSyGPeVeppviVX5pLv3pRF5Q9wxy\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"8888\",\n            \"name\": \"Plaid Mortgage\",\n            \"official_name\": null,\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"mortgage\",\n            \"type\": \"loan\"\n        },\n        {\n            \"account_id\": \"JJxJGjDPaDiwJ9n6nqqof9w1KWmvKdtBem4b6\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"9001\",\n            \"name\": \"Plaid HSA\",\n            \"official_name\": \"Plaid Cares Health Savings Account\",\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"hsa\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"kvDveNW1bWi4aqJmJggNtl6VR8WnRBcL1kQx5\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"9002\",\n            \"name\": \"Plaid Cash Management\",\n            \"official_name\": \"Plaid Growth Cash Management\",\n            \"phone_number\": {\n                \"score\": null\n            },\n            \"subtype\": \"cash management\",\n            \"type\": \"depository\"\n        },\n        {\n            \"account_id\": \"l6D6XPnLWncn1KJqJBBPSVGn9bPQ9XFpmlwLV\",\n            \"address\": {\n                \"is_postal_code_match\": null,\n                \"score\": null\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\": null\n            },\n            \"legal_name\": {\n                \"is_business_name_detected\": null,\n                \"is_first_name_or_last_name_match\": null,\n                \"is_nickname_match\": null,\n                \"score\": null\n            },\n            \"mask\": \"9999\",\n            \"name\": \"Plaid Business Credit Card\",\n            \"official_name\": \"Plaid Platinum Small Business Credit Card\",\n            \"phone_number\": {\n                \"score\": null\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_refresh\",\n            \"transfer\"\n        ],\n        \"billed_products\": [\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"consent_expiration_time\": null,\n        \"error\": null,\n        \"institution_id\": \"ins_127989\",\n        \"institution_name\": \"Bank of America\",\n        \"item_id\": \"rvDvLMnlRni5gdr9reezCEG1E1zABlcldoPL9\",\n        \"products\": [\n            \"assets\",\n            \"auth\",\n            \"identity\",\n            \"identity_match\",\n            \"transactions\"\n        ],\n        \"update_type\": \"background\",\n        \"webhook\": \"\"\n    },\n    \"request_id\": \"9ZrbuyG7EtOUYri\"\n}"}],"_postman_id":"953e9982-ce52-4ee1-9664-d1733faf5c2f"},{"name":"Return uploaded document identity","id":"5914c3c0-6af4-4715-aabe-799330f151e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"https://sandbox.plaid.com/identity/documents/uploads/get","description":"<p>This endpoint retrieves identity details.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>legal_name</code></td>\n<td>optional</td>\n<td>The user's full legal name.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>phone_number</code></td>\n<td>optional</td>\n<td>The user's phone number.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>email_address</code></td>\n<td>optional</td>\n<td>Data about the components comprising an address.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["identity","documents","uploads","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"5914c3c0-6af4-4715-aabe-799330f151e7"}],"id":"2bfcd738-7e7b-4c3e-8ed4-66859bf7fec4","description":"<p>This section contains API references for Identity endpoints.</p>\n","_postman_id":"2bfcd738-7e7b-4c3e-8ed4-66859bf7fec4"},{"name":"Signal 📶","item":[{"name":"Evaluate transaction","id":"d04ce9ec-8034-4a32-bb93-ffbad11089fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": ,\r\n   \"account_id\": ,\r\n   \"client_transaction_id\": \"txn12345\",\r\n   \"amount\": 123.45,\r\n   \"client_user_id\": \"user1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/evaluate","description":"<p>This endpoint evaluates a planned transaction.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_id</code></td>\n<td>required</td>\n<td>Plaid account_id of the account that is funding the proposed transaction</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>client_transaction_id</code></td>\n<td>required</td>\n<td>The unique ID that you would like to use to refer to this transaction.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>required</td>\n<td>The transaction amount in USD</td>\n<td>number (double)</td>\n</tr>\n<tr>\n<td><code>user_present</code></td>\n<td>optional</td>\n<td>true if the end user is present while initiating the ACH transfer and the endpoint is being called</td>\n<td>Boolean</td>\n</tr>\n<tr>\n<td><code>client_user_id</code></td>\n<td>optional</td>\n<td>A unique ID that identifies the end user in your system.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>is_recurring</code></td>\n<td>optional</td>\n<td>true if the ACH transaction is a recurring transaction;</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td><code>default_payment_method</code></td>\n<td>optional</td>\n<td>The default ACH or non-ACH payment method to complete the transaction.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>user</code></td>\n<td>optional</td>\n<td>Details about the end user initiating the transaction</td>\n<td>object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["signal","evaluate"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"1dbb5ae8-7994-4440-bd36-4bbd02c59ecf","name":"Evaluate transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"client_id\": ,\r\n  \"secret\": ,\r\n  \"access_token\": ,\r\n   \"account_id\": ,\r\n   \"client_transaction_id\": \"txn12345\",\r\n   \"amount\": 123.45,\r\n   \"client_user_id\": \"user1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/evaluate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:07:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1095"},{"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\": 0,\n        \"address_change_count_90d\": 1,\n        \"available_balance\": 2180.992669678332,\n        \"balance_last_updated\": \"2024-11-21T21:40:47Z\",\n        \"credit_transactions_count_10d\": 2,\n        \"credit_transactions_count_30d\": 5,\n        \"credit_transactions_count_60d\": 7,\n        \"credit_transactions_count_90d\": 9,\n        \"current_balance\": 935.5769132625294,\n        \"days_since_account_opening\": 787,\n        \"days_since_first_plaid_connection\": 1262,\n        \"days_with_negative_balance_count_90d\": 3,\n        \"debit_transactions_count_10d\": 0,\n        \"debit_transactions_count_30d\": 3,\n        \"debit_transactions_count_60d\": 7,\n        \"debit_transactions_count_90d\": 10,\n        \"distinct_ip_addresses_count_30d\": 1,\n        \"distinct_ip_addresses_count_3d\": 2,\n        \"distinct_ip_addresses_count_7d\": 2,\n        \"distinct_ip_addresses_count_90d\": 2,\n        \"distinct_ssl_tls_connection_sessions_count_30d\": 1,\n        \"distinct_ssl_tls_connection_sessions_count_3d\": 0,\n        \"distinct_ssl_tls_connection_sessions_count_7d\": 2,\n        \"distinct_ssl_tls_connection_sessions_count_90d\": 0,\n        \"distinct_user_agents_count_30d\": 0,\n        \"distinct_user_agents_count_3d\": 0,\n        \"distinct_user_agents_count_7d\": 2,\n        \"distinct_user_agents_count_90d\": 2,\n        \"email_change_count_28d\": 0,\n        \"email_change_count_90d\": 0,\n        \"failed_plaid_non_oauth_authentication_attempts_count_30d\": 6,\n        \"failed_plaid_non_oauth_authentication_attempts_count_3d\": 1,\n        \"failed_plaid_non_oauth_authentication_attempts_count_7d\": 4,\n        \"is_account_closed\": false,\n        \"is_account_frozen_or_restricted\": false,\n        \"is_savings_or_money_market_account\": false,\n        \"nsf_overdraft_transactions_count_30d\": 7,\n        \"nsf_overdraft_transactions_count_60d\": 5,\n        \"nsf_overdraft_transactions_count_7d\": 19,\n        \"nsf_overdraft_transactions_count_90d\": 9,\n        \"p10_eod_balance_30d\": 1362.616215162811,\n        \"p10_eod_balance_31d_to_60d\": 6063.176700064874,\n        \"p10_eod_balance_60d\": 3295.7250064187047,\n        \"p10_eod_balance_61d_to_90d\": 886.0283068112631,\n        \"p10_eod_balance_90d\": 4029.7737074610495,\n        \"p50_credit_transactions_amount_28d\": 1309.399468937177,\n        \"p50_debit_transactions_amount_28d\": 954.5736914120386,\n        \"p50_eod_balance_30d\": 9288.477939650416,\n        \"p50_eod_balance_31d_to_60d\": 12998.301402977657,\n        \"p50_eod_balance_60d\": 12720.52692917363,\n        \"p50_eod_balance_61d_to_90d\": 7350.593236513543,\n        \"p50_eod_balance_90d\": 9292.863474229045,\n        \"p90_eod_balance_30d\": 19355.027320907095,\n        \"p90_eod_balance_31d_to_60d\": 23654.006308928543,\n        \"p90_eod_balance_60d\": 21740.336153077013,\n        \"p90_eod_balance_61d_to_90d\": 27347.131406346056,\n        \"p90_eod_balance_90d\": 19226.169086863978,\n        \"p95_credit_transactions_amount_28d\": 4703.632560466414,\n        \"p95_debit_transactions_amount_28d\": 4529.564501981778,\n        \"phone_change_count_28d\": 1,\n        \"phone_change_count_90d\": 2,\n        \"plaid_connections_count_30d\": 1,\n        \"plaid_connections_count_7d\": 0,\n        \"plaid_non_oauth_authentication_attempts_count_30d\": 2,\n        \"plaid_non_oauth_authentication_attempts_count_3d\": 1,\n        \"plaid_non_oauth_authentication_attempts_count_7d\": 2,\n        \"total_credit_transactions_amount_10d\": 910.2953326657961,\n        \"total_credit_transactions_amount_30d\": 517.2633197574058,\n        \"total_credit_transactions_amount_60d\": 589.8245129837128,\n        \"total_credit_transactions_amount_90d\": 621.8330760377629,\n        \"total_debit_transactions_amount_10d\": 200.4125608352569,\n        \"total_debit_transactions_amount_30d\": 578.5411117862494,\n        \"total_debit_transactions_amount_60d\": 442.34173220733356,\n        \"total_debit_transactions_amount_90d\": 951.9573482032579,\n        \"total_plaid_connections_count\": 1,\n        \"transactions_last_updated\": \"2024-11-21T21:40:47Z\",\n        \"unauthorized_transactions_count_30d\": 5,\n        \"unauthorized_transactions_count_60d\": 8,\n        \"unauthorized_transactions_count_7d\": 12,\n        \"unauthorized_transactions_count_90d\": 11\n    },\n    \"request_id\": \"dmDzttsmIXGh0y4\",\n    \"scores\": {\n        \"bank_initiated_return_risk\": {\n            \"risk_tier\": 7,\n            \"score\": 84\n        },\n        \"customer_initiated_return_risk\": {\n            \"risk_tier\": 5,\n            \"score\": 56\n        }\n    },\n    \"warnings\": []\n}"}],"_postman_id":"d04ce9ec-8034-4a32-bb93-ffbad11089fa"},{"name":"Report initiated transaction","id":"e1b99d15-7397-490d-bca5-829df641f6cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"client_transaction_id\": \"txn123\",\r\n   \"initiated\": true\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/decision/report","description":"<p>This endpoint reports whether the transaction was initiated</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>client_transaction_id</code></td>\n<td>required</td>\n<td>The unique ID that you would like to use to refer to this transaction.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>initiated</code></td>\n<td>required</td>\n<td>true if the ACH transaction was initiated, false otherwise.</td>\n<td>boolean</td>\n</tr>\n<tr>\n<td><code>days_funds_on_hold</code></td>\n<td>optional</td>\n<td>The days you make funds available for your customers.</td>\n<td>integer</td>\n</tr>\n<tr>\n<td><code>decision_outcome</code></td>\n<td>optional</td>\n<td>The payment decision from the risk assessment.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>payment_method</code></td>\n<td>optional</td>\n<td>The payment method to complete the transaction after the risk assessment.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>amount_instantly_available</code></td>\n<td>optional</td>\n<td>The amount (in USD) made available to your customers instantly following the debit transaction.</td>\n<td>number</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["signal","decision","report"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"22008f63-8736-4b4d-a5f1-7cb2ee786a15","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"client_transaction_id\": \"txn123\",\r\n   \"initiated\": true\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/decision/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:25: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\": \"4YusRl6vVCSAxEY\"\n}"}],"_postman_id":"e1b99d15-7397-490d-bca5-829df641f6cd"},{"name":"Report a return","id":"6cb7ccc7-2c53-4769-8eef-d6ae4eee597b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"client_transaction_id\": \"txn12345\",\r\n   \"return_code\": \"R01\"\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/return/report","description":"<p>This endpoint reports a returned transaction that was previously sent to the <a href=\"https://plaid.com/docs/api/products/signal/#signalevaluate\"><code>/signal/evaluate</code></a> endpoint.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>client_transaction_id</code></td>\n<td>required</td>\n<td>The unique ID that you would like to use to refer to this transaction.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>return code</code></td>\n<td>required</td>\n<td>Must be a valid ACH return code (e.g. \"R01\")</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>returned_at</code></td>\n<td>optional</td>\n<td>Date and time when you receive the returns from your payment processors</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["signal","return","report"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"16dd021b-3771-4308-aac3-7ccdd47e3781","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"client_transaction_id\": \"txn12345\",\r\n   \"return_code\": \"R01\"\r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/return/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:28:42 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\": \"lfPecUpNe3snVJc\"\n}"}],"_postman_id":"6cb7ccc7-2c53-4769-8eef-d6ae4eee597b"},{"name":"Opt-in an Item to Signal","id":"52783a4e-c7f1-42c0-8ed6-2cb1d100cd3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"access_token\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/prepare","description":"<p>This endpoint allows you to opt-in an Item to the Signal data collection process.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_id</code></td>\n<td>required</td>\n<td>The account ID you want to get the events for all transactions from</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>funding_account_id</code></td>\n<td>optional</td>\n<td>Secify the account used to fund the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>ledger_id</code></td>\n<td>optional</td>\n<td>Specify which ledger balance used to fund the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>required</td>\n<td>Specify the type of transfer (debit or credit)</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["signal","prepare"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"ea581c22-b41b-42b1-afaa-c3f85e5ce726","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\": ,\r\n   \"secret\": ,\r\n   \"access_token\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/signal/prepare"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 09:42:57 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\": \"9sqmiBTzr5CVIh5\"\n}"}],"_postman_id":"52783a4e-c7f1-42c0-8ed6-2cb1d100cd3b"}],"id":"65c1dad0-9555-4ede-8215-9be40becbb05","description":"<p>This section contains API Reference guide for the Signal product</p>\n","_postman_id":"65c1dad0-9555-4ede-8215-9be40becbb05"},{"name":"Transfer 💸","item":[{"name":"Initiating Transfer","item":[{"name":"Create a transfer authorization","id":"91bbcb25-8d5d-4d98-8ac4-abaf685d1ce9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n   \"secret\": ,\r\n   \"access_token\": ,\r\n   \"account_id\": ,\r\n   \"type\": \"debit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"12.34\",\r\n   \"ach_class\": \"ppd\",\r\n   \"user\": {\r\n     \"legal_name\": \"Chris Taylor\"\r\n   }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/authorization/create","description":"<p>This endpoint allows you to authorize a transfer.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>account_id</td>\n<td>required</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>funding_account_id</td>\n<td>optional</td>\n<td>Specify the account used to fund the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>ledger_id</td>\n<td>optional</td>\n<td>Specify which ledger balance used to fund the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>type</td>\n<td>required</td>\n<td>The type of transfer (debit or credit)</td>\n<td>String</td>\n</tr>\n<tr>\n<td>network</td>\n<td>required</td>\n<td>The network or rails used for the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>required</td>\n<td>The amount of the transfer.</td>\n<td>Decimal String with two digits of precision e.g. \"10.00\"</td>\n</tr>\n<tr>\n<td>ach_class</td>\n<td>required</td>\n<td>Specifies the use case of the transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td>user</td>\n<td>required</td>\n<td>The legal name and other information for the account holder.</td>\n<td>Object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","authorization","create"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"7c4ad141-cd59-4864-b99b-0c8215078603","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n   \"secret\": ,\r\n   \"access_token\": ,\r\n   \"account_id\": ,\r\n   \"type\": \"debit\",\r\n   \"network\": \"ach\",\r\n   \"amount\": \"12.34\",\r\n   \"ach_class\": \"ppd\",\r\n   \"user\": {\r\n     \"legal_name\": \"Chris Taylor\"\r\n   }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/authorization/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 10:58:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"486"},{"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-22T10:58:11.462737798Z\",\n        \"decision\": \"approved\",\n        \"decision_rationale\": null,\n        \"guarantee_decision\": null,\n        \"guarantee_decision_rationale\": null,\n        \"id\": \"8e897986-aac8-132a-dc6e-cec5bb6cbcae\",\n        \"payment_risk\": null,\n        \"proposed_transfer\": {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"ach_class\": \"ppd\",\n            \"amount\": \"12.34\",\n            \"credit_funds_source\": null,\n            \"funding_account_id\": null,\n            \"iso_currency_code\": \"USD\",\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"network\": \"ach\",\n            \"origination_account_id\": \"\",\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\n            \"type\": \"debit\",\n            \"user\": {\n                \"address\": null,\n                \"email_address\": null,\n                \"legal_name\": \"Chris Taylor\",\n                \"phone_number\": null\n            }\n        }\n    },\n    \"request_id\": \"6ElohqdGfq2dAYR\"\n}"}],"_postman_id":"91bbcb25-8d5d-4d98-8ac4-abaf685d1ce9"},{"name":"Create a transfer","id":"8c96f4a3-d3ce-4daf-aff8-49e2073785e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n    \"access_token\": ,\r\n    \"account_id\": ,\r\n   \"authorization_id\": ,\r\n   \"description\": \"Payment\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/create","description":"<p>This endpoint allows you to initiate a new transfer.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>access_token</code></td>\n<td>required</td>\n<td>The access token associated with the Item data you're requesting for.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_id</code></td>\n<td>required</td>\n<td>The Plaid account_id corresponding to the end-user account that will be debited or credited.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>authorization_id</code></td>\n<td>required</td>\n<td>Plaid’s unique identifier for a transfer authorization.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>required</td>\n<td>The transfer description (Maximum of 15 characters)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>optional</td>\n<td>The amount of the transfer (decimal string with two digits of precision e.g. \"10.00\").</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","create"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"d6b0648d-e15f-4c30-a031-6f9ffed49712","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n    \"access_token\": ,\r\n    \"account_id\": ,\r\n   \"authorization_id\": ,\r\n   \"description\": \"Payment\"\r\n    }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 11:06:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"603"},{"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\": \"8oIeZQZ2aD3JHZI\",\n    \"transfer\": {\n        \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"12.34\",\n        \"authorization_id\": \"8e897986-aac8-132a-dc6e-cec5bb6cbcae\",\n        \"cancellable\": true,\n        \"created\": \"2024-11-22T11:06:54.71963Z\",\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\": \"c1d078ee-c74f-8c79-b282-012bee07e3ed\",\n        \"iso_currency_code\": \"USD\",\n        \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n        \"metadata\": null,\n        \"network\": \"ach\",\n        \"network_trace_id\": null,\n        \"origination_account_id\": \"\",\n        \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\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\": \"Chris Taylor\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"8c96f4a3-d3ce-4daf-aff8-49e2073785e6"},{"name":"Cancel a transfer","id":"e85c28a8-7797-4713-8355-5bcf0def609b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"transfer_id\": \r\n}\r\n ","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/cancel","description":"<p>This endpoint allows you to cancel a transfer.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>transfer_id</code></td>\n<td>required</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","cancel"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"ef6291f9-b18d-4f49-a568-018fd0c8293f","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"transfer_id\": \r\n}\r\n ","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 11:15:26 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\": \"OL8wl0ZfsTcRDT4\"\n}"}],"_postman_id":"e85c28a8-7797-4713-8355-5bcf0def609b"},{"name":"Cancel Transfer Authorization","id":"5d0d626a-41a1-4160-ae69-857720b2a8f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"authorization_id\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/authorization/cancel","description":"<p>This endpoint allows you to cancel a transfer authorization.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>authorization_id</code></td>\n<td>required</td>\n<td>Plaid’s unique identifier for a transfer authorization.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","authorization","cancel"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"fabcdb44-4e59-4d8e-b6f8-55ed4e94884c","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"authorization_id\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/authorization/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 11:22:26 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\": \"RxFNdt15uQ5DKHH\"\n}"}],"_postman_id":"5d0d626a-41a1-4160-ae69-857720b2a8f2"}],"id":"e1a49843-8d17-4f36-9900-64b67f0aa0f1","description":"<p>This section contains API Reference for Transfer initiation endpoints.</p>\n","_postman_id":"e1a49843-8d17-4f36-9900-64b67f0aa0f1"},{"name":"Reading Transfers","item":[{"name":"Retrieve a transfer","id":"57822749-27ce-4b69-87fb-e3729745f6f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"transfer_id\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/get","description":"<p>This endpoint allows you to fetch information about a transfer, based on the given <code>transfer_id</code> or <code>authorization_id</code></p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>transfer_id</code></td>\n<td>required</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>authorization_id</code></td>\n<td>optional</td>\n<td>Plaid’s unique identifier for a transfer authorization.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"c34052e3-0374-4a0b-b038-c91d434c78a4","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": ,\r\n   \"transfer_id\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/get"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 11:47:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"609"},{"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\": \"RiveLaI6kmSd9WB\",\n    \"transfer\": {\n        \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n        \"ach_class\": \"ppd\",\n        \"amount\": \"12.34\",\n        \"authorization_id\": \"df0819ce-00ce-9848-0442-3846ae2aedda\",\n        \"cancellable\": true,\n        \"created\": \"2024-11-22T11:44:40.977449Z\",\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\": \"6f3ba6b8-289b-7adc-68fa-5ac990a7b844\",\n        \"iso_currency_code\": \"USD\",\n        \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n        \"metadata\": null,\n        \"network\": \"ach\",\n        \"network_trace_id\": null,\n        \"origination_account_id\": \"\",\n        \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\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\": \"Chris Taylor\",\n            \"phone_number\": null\n        }\n    }\n}"}],"_postman_id":"57822749-27ce-4b69-87fb-e3729745f6f8"},{"name":"List transfers","id":"79940422-636e-4e06-a96b-5e0ea641cf0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/list","description":"<p>This endpoint allows you to see a list of all your transfers and their statuses.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>start_Date</code></td>\n<td>optional</td>\n<td>The start date-time of transfers to list. This should be in RFC format (i.e. 2019-12-06T22:35:49Z)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>optional</td>\n<td>(i.e. 2019-12-06T22:35:49Z)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>optional</td>\n<td>The maximum number of transfers to return.  <br />  <br />- Minimum: 1  <br />- Maximum: 25  <br />- Default: 25</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>optional</td>\n<td>The number of transfers to skip before returning results.  <br />  <br />Default: 0  <br />Minimum: 0</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><code>originator_client_id</code></td>\n<td>optional</td>\n<td>Filter transfers to only those with the specified originator client.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>funding_account_id</code></td>\n<td>optional</td>\n<td>Filter transfers to only those with the specified funding_account_id.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","list"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"0cab1812-3dd9-40ad-9055-e2d33b2333b2","name":"List transfers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": \r\n}","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 28 Nov 2024 07:02:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"720"},{"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\": \"VBdqw1KdjtGJWpB\",\n    \"transfers\": [\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"ach_class\": \"ppd\",\n            \"amount\": \"12.34\",\n            \"authorization_id\": \"df0819ce-00ce-9848-0442-3846ae2aedda\",\n            \"cancellable\": true,\n            \"created\": \"2024-11-22T11:44:40.977449Z\",\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\": \"6f3ba6b8-289b-7adc-68fa-5ac990a7b844\",\n            \"iso_currency_code\": \"USD\",\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"metadata\": null,\n            \"network\": \"ach\",\n            \"network_trace_id\": null,\n            \"origination_account_id\": \"\",\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\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\": \"Chris Taylor\",\n                \"phone_number\": null\n            }\n        },\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"ach_class\": \"ppd\",\n            \"amount\": \"12.34\",\n            \"authorization_id\": \"8e897986-aac8-132a-dc6e-cec5bb6cbcae\",\n            \"cancellable\": false,\n            \"created\": \"2024-11-22T11:06:54.71963Z\",\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\": \"c1d078ee-c74f-8c79-b282-012bee07e3ed\",\n            \"iso_currency_code\": \"USD\",\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"metadata\": null,\n            \"network\": \"ach\",\n            \"network_trace_id\": null,\n            \"origination_account_id\": \"\",\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\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\": \"Chris Taylor\",\n                \"phone_number\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"79940422-636e-4e06-a96b-5e0ea641cf0c"},{"name":"List transfer events","id":"3b895b22-7e31-450b-b324-6a24c765cf83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": ,\r\n    \"transfer_id\": ,\r\n    \"account_id\": \r\n  }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/event/list","description":"<p>This endpoint allows you to get a list of transfer events based on specified filter criteria.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>start_Date</code></td>\n<td>optional</td>\n<td>The start date-time of transfers to list. This should be in RFC format (i.e. 2019-12-06T22:35:49Z)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>optional</td>\n<td>(i.e. 2019-12-06T22:35:49Z)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>transfer_id</code></td>\n<td>optional</td>\n<td>Plaid’s unique identifier for a transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>account_id</code></td>\n<td>optional</td>\n<td>The account ID to get events for all transactions to/from an account.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>transfer_type</code></td>\n<td>optional</td>\n<td>The type of transfer.  <br />  <br />Possible values: debit, credit, null</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>event_types</code></td>\n<td></td>\n<td>Filter events by event type.  <br />  <br />Possible values: pending, cancelled, failed, posted, settled.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>sweep_id</code></td>\n<td>optional</td>\n<td>Plaid’s unique identifier for a sweep.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>optional</td>\n<td>The maximum number of transfers to return.  <br />  <br />- Minimum: 1  <br />- Maximum: 25  <br />- Default: 25</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><code>offset</code></td>\n<td>optional</td>\n<td>The number of transfers to skip before returning results.  <br />  <br />Default: 0  <br />Minimum: 0</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><code>originator_client_id</code></td>\n<td>optional</td>\n<td>Filter transfers to only those with the specified originator client.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>funding_account_id</code></td>\n<td>optional</td>\n<td>Filter transfers to only those with the specified funding_account_id.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","event","list"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"f62cd4d7-4f39-41e0-9a4d-f07808665ca0","name":"List transfer events","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": ,\r\n    \"transfer_id\": ,\r\n    \"account_id\": \r\n  }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/event/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 12:26:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"383"},{"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\": \"3iUkDwefctSaTFM\",\n    \"transfer_events\": [\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"event_id\": 3,\n            \"event_type\": \"pending\",\n            \"failure_reason\": null,\n            \"funding_account_id\": null,\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"origination_account_id\": null,\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\n            \"refund_id\": null,\n            \"sweep_amount\": null,\n            \"sweep_id\": null,\n            \"timestamp\": \"2024-11-22T11:44:41.003354Z\",\n            \"transfer_amount\": \"12.34\",\n            \"transfer_id\": \"6f3ba6b8-289b-7adc-68fa-5ac990a7b844\",\n            \"transfer_type\": \"debit\"\n        }\n    ]\n}"}],"_postman_id":"3b895b22-7e31-450b-b324-6a24c765cf83"},{"name":"Sync transfer events","id":"0db66615-577a-4dd3-ac2f-3528ef407e67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/event/list","description":"<p>This endpoint allows you to request up to the next 25 transfer events that happened after a specific <code>event_id.</code></p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>after_id</code></td>\n<td>required</td>\n<td>The latest (largest) event_id fetched via the sync endpoint, or 0 initially.</td>\n<td>Integer</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>optional</td>\n<td>The maximum number of events to return.  <br />  <br />- Minimum: 1  <br />- Maximum: 25  <br />- Default: 25</td>\n<td>Integer</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","event","list"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[{"id":"c6b14d98-fe78-43d0-9b21-a83b08b23158","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/event/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 22 Nov 2024 12:09:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"464"},{"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\": \"tP8RwPPW1LxJRjc\",\n    \"transfer_events\": [\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"event_id\": 3,\n            \"event_type\": \"pending\",\n            \"failure_reason\": null,\n            \"funding_account_id\": null,\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"origination_account_id\": null,\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\n            \"refund_id\": null,\n            \"sweep_amount\": null,\n            \"sweep_id\": null,\n            \"timestamp\": \"2024-11-22T11:44:41.003354Z\",\n            \"transfer_amount\": \"12.34\",\n            \"transfer_id\": \"6f3ba6b8-289b-7adc-68fa-5ac990a7b844\",\n            \"transfer_type\": \"debit\"\n        },\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"event_id\": 2,\n            \"event_type\": \"cancelled\",\n            \"failure_reason\": null,\n            \"funding_account_id\": null,\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"origination_account_id\": null,\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\n            \"refund_id\": null,\n            \"sweep_amount\": null,\n            \"sweep_id\": null,\n            \"timestamp\": \"2024-11-22T11:15:26.667119Z\",\n            \"transfer_amount\": \"12.34\",\n            \"transfer_id\": \"c1d078ee-c74f-8c79-b282-012bee07e3ed\",\n            \"transfer_type\": \"debit\"\n        },\n        {\n            \"account_id\": \"9J7JvmEpVEiDKoV8VJJrcxo1MWeGMlu49jGl5\",\n            \"event_id\": 1,\n            \"event_type\": \"pending\",\n            \"failure_reason\": null,\n            \"funding_account_id\": null,\n            \"ledger_id\": \"61326b55-5172-4535-b81a-326a36d2bd7b\",\n            \"origination_account_id\": null,\n            \"originator_client_id\": \"6736b2bcda8e7b00196ad1a7\",\n            \"refund_id\": null,\n            \"sweep_amount\": null,\n            \"sweep_id\": null,\n            \"timestamp\": \"2024-11-22T11:06:54.747352Z\",\n            \"transfer_amount\": \"12.34\",\n            \"transfer_id\": \"c1d078ee-c74f-8c79-b282-012bee07e3ed\",\n            \"transfer_type\": \"debit\"\n        }\n    ]\n}"}],"_postman_id":"0db66615-577a-4dd3-ac2f-3528ef407e67"},{"name":"Retrieve a sweep","id":"28a507d7-d18d-44a3-84f4-1626e0f92020","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"client_id\": ,\r\n   \"secret\": \r\n }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/sweep/get","description":"<p>This endpoint endpoint fetches a sweep of a given <code>sweep_id.</code></p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>sweep_id</code></td>\n<td>required</td>\n<td>Plaid's unique identifier for the sweep.</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","sweep","get"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"28a507d7-d18d-44a3-84f4-1626e0f92020"},{"name":"List sweeps","id":"965e037e-8c48-49a1-ad46-af74e9688029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"client_id\": ,\r\n    \"secret\": \r\n  }","options":{"raw":{"language":"json"}}},"url":"https://sandbox.plaid.com/transfer/sweep/list","description":"<p>This endpoint fetches sweeps based on given filters.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<h5 id=\"body-parameters\">Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>client_id</code></td>\n<td>required</td>\n<td>Your Plaid API client_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>secret</code></td>\n<td>required</td>\n<td>Your Plaid API secret</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>start_Date</code></td>\n<td>optional</td>\n<td>The start date-time of sweeps to return.(RFC 3339 format)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>end_date</code></td>\n<td>optional</td>\n<td>The end date-time of sweeps to return.(RFC 3339 format)</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>optional</td>\n<td>The maximum number of sweeps to return.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>optional</td>\n<td>Filter sweeps to only those with the specified amount.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>optional</td>\n<td>The status of a sweep transfer.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>originator_client_id</code></td>\n<td>optional</td>\n<td>Filter seeps to only those with the specified originator client.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>funding_account_id</code></td>\n<td>optional</td>\n<td>Filter sweeps to only those with the specified funding_account_id</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>transfer_id</code></td>\n<td>optional</td>\n<td>Filter sweeps to only those with the included transfer_id.</td>\n<td>String</td>\n</tr>\n<tr>\n<td><code>trigger</code></td>\n<td>optional</td>\n<td>The trigger of the sweep</td>\n<td>String</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["transfer","sweep","list"],"host":["https://sandbox.plaid.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"965e037e-8c48-49a1-ad46-af74e9688029"}],"id":"534ae636-0173-4046-816d-ff53121cab23","_postman_id":"534ae636-0173-4046-816d-ff53121cab23","description":""}],"id":"9daacf29-577e-4d56-88cc-a3d449793187","description":"<p>This section contains API Reference for Transfer endpoints.</p>\n","_postman_id":"9daacf29-577e-4d56-88cc-a3d449793187"}],"id":"04e5df8c-291b-44f4-b63a-fc0bbf32b9ac","description":"<p>This section contains endpoints for retrieving bank data, events, and transactions.</p>\n","_postman_id":"04e5df8c-291b-44f4-b63a-fc0bbf32b9ac"}],"event":[{"listen":"prerequest","script":{"id":"916f913b-b858-44c1-9861-f6adbf2c0f88","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"1638d0a4-b00b-4af4-a109-a2669fc8e0ba","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://sandbox.plaid.com"},{"key":"client_id","value":"","type":"string"},{"key":"secret","value":"","type":"string"},{"key":"access_token","value":"","type":"string"},{"key":"institution_id","value":"","type":"string"},{"key":"account_id","value":"","type":"string"},{"key":"authorization_id","value":"","type":"string"},{"key":"transfer_id","value":"","type":"string"}]}