{"title":"Webhooks for card payouts","category":"default","creationDate":1679391360,"content":"<p>When funds are paid out from a balance account to a user's bank account, Adyen sends webhook notifications to inform your platform of the progress and status changes of the transfer. Use this guide to understand which events are sent and how to configure your system to process these payout-related webhooks successfully.<\/p>\n<p>When a payout is triggered in your platform, Adyen sends the following kinds of webhooks:<\/p>\n<ul>\n<li> <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.created<\/a>, which informs your server that an outgoing transfer is initiated from a balance account in your platform.<\/li>\n<li> <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a>, which informs your server of the transfer status changes.<\/li>\n<\/ul>\n<p>This page explains how to identify webhooks related to card payouts and shows examples for the webhooks that you receive for every transfer status.<\/p>\n<h2>Requirements<\/h2>\n<p>Before you begin, take into account the following requirements and preparations.<\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Requirement<\/th>\n<th style=\"text-align: left;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\"><strong>Integration type<\/strong><\/td>\n<td style=\"text-align: left;\">An Adyen <a href=\"\/pt\/payouts\/payout-service\/integration-checklist\/\">payout service integration<\/a>.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><strong><a href=\"\/pt\/development-resources\/webhooks\">Webhooks<\/a><\/strong><\/td>\n<td style=\"text-align: left;\">To keep track of payout-related events in your platform, make sure that: <br\/> <ul><li markdown=\"1\">Your server must be able to <a href=\"\/pt\/development-resources\/webhooks\/configure-and-manage\">receive and accept webhooks<\/a>.<\/li><li markdown=\"1\">You have <a href=\"\/pt\/development-resources\/webhooks\/configure-and-manage#configure-customer-area\">subscribed<\/a> to <strong>Transfer webhooks<\/strong> and <strong>Transaction webhooks<\/strong> in your <a href=\"https:\/\/ca-test.adyen.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" class=\"external-link no-image\">Customer Area<\/a>.<\/li><\/ul><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Identify payout-related webhooks<\/h2>\n<p>You can identify transfer webhooks triggered by payout-related events by looking at the following values:<\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Parameter<\/th>\n<th style=\"text-align: left;\">Description<\/th>\n<th style=\"text-align: left;\">Value<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\"> <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created#request-data-category\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">category<\/a><\/td>\n<td style=\"text-align: left;\">Specifies the category of the transfer.<\/td>\n<td style=\"text-align: left;\"><span translate=\"no\"><strong>card<\/strong><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"> <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created#request-data-direction\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">direction<\/a><\/td>\n<td style=\"text-align: left;\">The direction of the transfer based on the balance account.<\/td>\n<td style=\"text-align: left;\"><span translate=\"no\"><strong>outgoing<\/strong><\/span><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"> <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created#request-data-type\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">type<\/a><\/td>\n<td style=\"text-align: left;\">Specifies the type of the transfer.<\/td>\n<td style=\"text-align: left;\"><span translate=\"no\"><strong>cardTransfer<\/strong><\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Adyen sends webhooks for the following payout events:<\/p>\n<ul>\n<li><a href=\"#payout-initiated\">Payout initiated<\/a><\/li>\n<li><a href=\"#payout-authorised\">Payout authorised<\/a><\/li>\n<li><a href=\"#payout-booked\">Payout booked<\/a><\/li>\n<li><a href=\"#payout-pending\">Payout pending<\/a><\/li>\n<li><a href=\"#payout-accepted\">Payout accepted<\/a><\/li>\n<li><a href=\"#payout-failed\">Payout failed<\/a><\/li>\n<\/ul>\n<p>The following sections provide code samples for the events that trigger webhooks. These samples consider a use case where you pay out EUR 100.00 from a balance account to a Mastercard or Visa card.<\/p>\n<h2>Payout initiated<\/h2>\n<p>When your user initiates a transfer to a Mastercard or Visa card, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.created<\/a> webhook to inform your server that an outgoing transfer request has been created. The webhook provides information about the transfer, such as:<\/p>\n<ul>\n<li>The <code>amount<\/code> of the payout<\/li>\n<li>The <code>reference<\/code> for the payout<\/li>\n<li>The <code>referenceForBeneficiary<\/code><\/li>\n<li>Your user's <code>balanceAccount<\/code> from which the funds will be deducted<\/li>\n<li>Details of the <code>accountHolder<\/code> linked to your user's balance account.<\/li>\n<li>Details of the <code>counterparty<\/code> in the transfer, which is your user's transfer instrument.<\/li>\n<li>The <code>bookingDate<\/code> when the payout was requested.<\/li>\n<li>The <code>id<\/code> of the corresponding transfer.<\/li>\n<\/ul>\n<p>The following tabs show examples of  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.created\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.created<\/a> webhooks for one-off and recurring payouts.<\/p>\n\n<div id=\"tabIRJXk\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;One-off payout with raw card data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer initiated&#039;\\&quot; :id=\\&quot;&#039;transfer-initiated-raw&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: -100 \\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;Amsterdam\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;NL\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;1011DJ\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;NH\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;Simon Carmiggeltstraat 6-50\\\\\\&quot;\\\\n                    },\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;expiryMonth\\\\\\&quot;: \\\\\\&quot;03\\\\\\&quot;,\\\\n                    \\\\\\&quot;expiryYear\\\\\\&quot;: \\\\\\&quot;2030\\\\\\&quot;,\\\\n                    \\\\\\&quot;number\\\\\\&quot;: \\\\\\&quot;498843******4305\\\\\\&quot; \\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 1,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.created\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;raw&quot;,&quot;oldTabId&quot;:&quot;one-off-initiated-raw_1&quot;,&quot;relation&quot;:&quot;raw&quot;},{&quot;title&quot;:&quot;One-off payout with tokenized data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer initiated&#039;\\&quot; :id=\\&quot;&#039;transfer-initiated-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: -100 \\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 1,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.created\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;token&quot;,&quot;oldTabId&quot;:&quot;one-off-initiated-tokenized_2&quot;,&quot;relation&quot;:&quot;token&quot;},{&quot;title&quot;:&quot;Recurring payout&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer initiated&#039;\\&quot; :id=\\&quot;&#039;transfer-initiated-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: -100 \\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 1,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.created\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;recurring&quot;,&quot;oldTabId&quot;:&quot;recurring-initiated_3&quot;,&quot;relation&quot;:&quot;recurring&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n<h2>Payout authorised<\/h2>\n<p>When the transfer request for the payout is authorised, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook to inform your server that the transfer amount has been reserved on the account. This webhook includes the <code>status<\/code> <strong>authorised<\/strong>.<\/p>\n<p>The following tabs show examples of  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhooks for one-off and recurring payouts.<\/p>\n\n<div id=\"tabwA0F6\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;One-off payout with raw card data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer authorised&#039;\\&quot; :id=\\&quot;&#039;transfer-authorised-raw&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{\\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;Amsterdam\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;NL\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;1011DJ\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;NH\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;Simon Carmiggeltstraat 6-50\\\\\\&quot;\\\\n                    },\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;expiryMonth\\\\\\&quot;: \\\\\\&quot;03\\\\\\&quot;,\\\\n                    \\\\\\&quot;expiryYear\\\\\\&quot;: \\\\\\&quot;2030\\\\\\&quot;,\\\\n                    \\\\\\&quot;number\\\\\\&quot;: \\\\\\&quot;498843******4305\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;:[\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 2,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;raw&quot;,&quot;oldTabId&quot;:&quot;one-off-authorised-raw_1&quot;,&quot;relation&quot;:&quot;raw&quot;},{&quot;title&quot;:&quot;One-off payout with tokenized data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer authorised&#039;\\&quot; :id=\\&quot;&#039;transfer-authorised-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 2,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;token&quot;,&quot;oldTabId&quot;:&quot;one-off-authorised-tokenized_2&quot;,&quot;relation&quot;:&quot;token&quot;},{&quot;title&quot;:&quot;Recurring payout&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer authorised&#039;\\&quot; :id=\\&quot;&#039;transfer-authorised-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 2,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;recurring&quot;,&quot;oldTabId&quot;:&quot;recurring-authorised_3&quot;,&quot;relation&quot;:&quot;recurring&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n<h2>Payout booked<\/h2>\n<p>When the funds are deducted from your user's balance account, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook with:<\/p>\n<ul>\n<li><code>direction<\/code>: <strong>outgoing<\/strong><\/li>\n<li><code>status<\/code>: <strong>booked<\/strong><\/li>\n<li><code>events.transactionId<\/code>: ID of the transaction<\/li>\n<\/ul>\n<p>This status is not final. The transfer may still <a href=\"#outgoing-bank-transfer-failed\">fail<\/a> if, for example, the transfer is rejected by the scheme or issuing bank.<\/p>\n<p>The following tabs show examples of  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhooks for one-off and recurring payouts.<\/p>\n\n<div id=\"tabm0Mx3\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;One-off payout with raw card data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer booked&#039;\\&quot; :id=\\&quot;&#039;transfer-booked-raw&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{\\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;Amsterdam\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;NL\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;1011DJ\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;NH\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;Simon Carmiggeltstraat 6-50\\\\\\&quot;\\\\n                    },\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;expiryMonth\\\\\\&quot;: \\\\\\&quot;03\\\\\\&quot;,\\\\n                    \\\\\\&quot;expiryYear\\\\\\&quot;: \\\\\\&quot;2030\\\\\\&quot;,\\\\n                    \\\\\\&quot;number\\\\\\&quot;: \\\\\\&quot;498843******4305\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 3,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;raw&quot;,&quot;oldTabId&quot;:&quot;one-off-booked-raw_1&quot;,&quot;relation&quot;:&quot;raw&quot;},{&quot;title&quot;:&quot;One-off payout with tokenized data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer booked&#039;\\&quot; :id=\\&quot;&#039;transfer-booked-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                        \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 3,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;token&quot;,&quot;oldTabId&quot;:&quot;one-off-booked-tokenized_2&quot;,&quot;relation&quot;:&quot;token&quot;},{&quot;title&quot;:&quot;Recurring payout&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer booked&#039;\\&quot; :id=\\&quot;&#039;transfer-booked-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                        \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 3,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;recurring&quot;,&quot;oldTabId&quot;:&quot;recurring-booked_3&quot;,&quot;relation&quot;:&quot;recurring&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n<h2>Payout pending<\/h2>\n<p>After the funds are deducted from your user's balance account, the transfer is automatically analyzed to ensure that it complies with Adyen's policies. If a transfer is flagged, Adyen reviews the transfer.<\/p>\n<p>In order to speed up the screening process and reduce the amount of manual effort needed, we recommend that you provide as much information as possible in the transfer request. For example, include all counterparty details in the  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfers\/latest\/post\/transfers#request-counterparty-card-cardHolder\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">counterparty.card.cardHolder<\/a> object.<\/p>\n<p>In this case, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook with a <code>tracking<\/code> event, specifying the following <code>trackingData<\/code> details:<\/p>\n<ul>\n<li><code>status<\/code>:  <strong>pending<\/strong><\/li>\n<li><code>type<\/code>: <strong>internalReview<\/strong><\/li>\n<\/ul>\n<p>The following tabs show examples of  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhooks for one-off and recurring payouts.<\/p>\n\n<div id=\"tabKTnBI\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;One-off payout with raw card data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer pending&#039;\\&quot; :id=\\&quot;&#039;transfer-pending-raw&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{\\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;Amsterdam\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;NL\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;1011DJ\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;NH\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;Simon Carmiggeltstraat 6-50\\\\\\&quot;\\\\n                    },\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;expiryMonth\\\\\\&quot;: \\\\\\&quot;03\\\\\\&quot;,\\\\n                    \\\\\\&quot;expiryYear\\\\\\&quot;: \\\\\\&quot;2030\\\\\\&quot;,\\\\n                    \\\\\\&quot;number\\\\\\&quot;: \\\\\\&quot;498843******4305\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;6JKRLZ8LOT47J7RY\\\\\\&quot;,\\\\n                \\\\\\&quot;trackingData\\\\\\&quot;: {\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;tracking\\\\\\&quot;,\\\\n                \\\\\\&quot;updateDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+03:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;tracking\\\\\\&quot;: {\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;raw&quot;,&quot;oldTabId&quot;:&quot;one-off-pending-raw_1&quot;,&quot;relation&quot;:&quot;raw&quot;},{&quot;title&quot;:&quot;One-off payout with tokenized data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer pending&#039;\\&quot; :id=\\&quot;&#039;transfer-pending-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{\\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;6JKRLZ8LOT47J7RY\\\\\\&quot;,\\\\n                \\\\\\&quot;trackingData\\\\\\&quot;: {\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;tracking\\\\\\&quot;,\\\\n                \\\\\\&quot;updateDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+03:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;tracking\\\\\\&quot;: {\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;token&quot;,&quot;oldTabId&quot;:&quot;one-off-pending-tokenized_2&quot;,&quot;relation&quot;:&quot;token&quot;},{&quot;title&quot;:&quot;Recurring payout&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer pending&#039;\\&quot; :id=\\&quot;&#039;transfer-pending-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{\\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;6JKRLZ8LOT47J7RY\\\\\\&quot;,\\\\n                \\\\\\&quot;trackingData\\\\\\&quot;: {\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;tracking\\\\\\&quot;,\\\\n                \\\\\\&quot;updateDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+03:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXNZT638V2C0BQA\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;tracking\\\\\\&quot;: {\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;pending\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalReview\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;recurring&quot;,&quot;oldTabId&quot;:&quot;recurring-pending_3&quot;,&quot;relation&quot;:&quot;recurring&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n<p>If the transfer fails Adyen's review process, we send a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook with a <code>tracking<\/code> event, specifying the following <code>trackingData<\/code>:<\/p>\n<ul>\n<li><code>reason<\/code>: <span translate=\"no\"><strong>refusedForRegulatoryReasons<\/strong><\/span><\/li>\n<li><code>status<\/code>: <span translate=\"no\"><strong>failed<\/strong><\/span><\/li>\n<li><code>type<\/code>: <span translate=\"no\"><strong>internalReview<\/strong><\/span><\/li>\n<\/ul>\n<p>If this is the case, contact our <a href=\"https:\/\/ca-test.adyen.com\/ca\/ca\/contactUs\/support.shtml?form=other\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" class=\"external-link no-image\">Support Team<\/a>.<\/p>\n<h2>Payout accepted<\/h2>\n<p>When a card payout request is accepted for processing by the card schemes, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook to your server.<\/p>\n<p>The webhook includes a <code>tracking<\/code> event, which contains the following <code>trackingData<\/code> details:<\/p>\n<ul>\n<li><code>status<\/code>: <span translate=\"no\"><strong><code>accepted<\/code><\/strong><\/span><\/li>\n<li><code>type<\/code>: <span translate=\"no\"><strong><code>confirmation<\/code><\/strong><\/span><\/li>\n<\/ul>\n<p>This event confirms that the scheme will process the payout. You can use this to let your counterparty know that their funds will arrive soon.<\/p>\n<p>The following example shows a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook for a payout request that has been accepted:<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Transfer accepted'\" :id=\"'transfer-accepted-raw'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n    \\\"data\\\": {\\n        \\\"accountHolder\\\": {\\n            \\\"description\\\": \\\"Your description for the account holder\\\",\\n            \\\"id\\\": \\\"AH00000000000000000000001\\\"\\n        },\\n        \\\"amount\\\": {\\n            \\\"currency\\\": \\\"EUR\\\",\\n            \\\"value\\\": 100\\n        },\\n        \\\"balanceAccount\\\": {\\n            \\\"description\\\": \\\"Your description for the balance account\\\",\\n            \\\"id\\\": \\\"BA00000000000000000000001\\\"\\n        },\\n        \\\"balancePlatform\\\": \\\"YOUR_BALANCE_PLATFORM\\\",\\n        \\\"balances\\\": [\\n            {\\n                \\\"balance\\\": -100,\\n                \\\"currency\\\": \\\"EUR\\\",\\n                \\\"received\\\": 0,\\n                \\\"reserved\\\": 0\\n            }\\n        ],\\n        \\\"category\\\": \\\"card\\\",\\n        \\\"counterparty\\\": {\\n            \\\"card\\\": {\\n                \\\"cardHolder\\\": {\\n                    \\\"address\\\": {\\n                        \\\"city\\\": \\\"Amsterdam\\\",\\n                        \\\"country\\\": \\\"NL\\\",\\n                        \\\"postalCode\\\": \\\"1011DJ\\\",\\n                        \\\"stateOrProvince\\\": \\\"NH\\\",\\n                        \\\"line1\\\": \\\"Simon Carmiggeltstraat 6-50\\\"\\n                    },\\n                    \\\"firstName\\\": \\\"Albert\\\",\\n                    \\\"lastName\\\": \\\"Klaassen\\\",\\n                    \\\"type\\\": \\\"individual\\\"\\n                },\\n                \\\"cardIdentification\\\": {\\n                    \\\"expiryMonth\\\": \\\"03\\\",\\n                    \\\"expiryYear\\\": \\\"2030\\\",\\n                    \\\"number\\\": \\\"498843******4305\\\"\\n                }\\n            }\\n        },\\n        \\\"creationDate\\\": \\\"2024-06-11T13:14:16+02:00\\\",\\n        \\\"description\\\": \\\"Your description for the transfer\\\",\\n        \\\"direction\\\": \\\"outgoing\\\",\\n        \\\"events\\\": [\\n            {\\n                \\\"bookingDate\\\": \\\"2024-06-11T13:14:18+02:00\\\",\\n                \\\"id\\\": \\\"EVJN0000000000000000000000001\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": -100\\n                    }\\n                ],\\n                \\\"status\\\": \\\"received\\\",\\n                \\\"type\\\": \\\"accounting\\\"\\n            },\\n            {\\n                \\\"bookingDate\\\": \\\"2024-06-11T13:14:18+02:00\\\",\\n                \\\"id\\\": \\\"EVJN0000000000000000000000002\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 100,\\n                        \\\"reserved\\\": -100\\n                    }\\n                ],\\n                \\\"status\\\": \\\"authorised\\\",\\n                \\\"type\\\": \\\"accounting\\\"\\n            },\\n            {\\n                \\\"bookingDate\\\": \\\"2024-06-11T13:14:18+02:00\\\",\\n                \\\"id\\\": \\\"EVJN0000000000000000000000003\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"balance\\\": -100,\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 0,\\n                        \\\"reserved\\\": 100\\n                    }\\n                ],\\n                \\\"status\\\": \\\"booked\\\",\\n                \\\"transactionId\\\": \\\"EVJN0000000000000000000000003EUR\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"valueDate\\\": \\\"2024-06-11T13:14:16+02:00\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVTR422MV2235GJQ5N384MT86H743Z\\\",\\n                \\\"trackingData\\\": {\\n                    \\\"status\\\": \\\"accepted\\\",\\n                    \\\"type\\\": \\\"confirmation\\\"\\n                },\\n                \\\"type\\\": \\\"tracking\\\",\\n                \\\"updateDate\\\": \\\"2024-06-11T13:14:48+02:00\\\"\\n            }\\n        ],\\n        \\\"id\\\": \\\"4VXNZT638V2C0BQA\\\",\\n        \\\"reason\\\": \\\"approved\\\",\\n        \\\"reference\\\": \\\"Your internal reference for the transfer\\\",\\n        \\\"sequenceNumber\\\": 4,\\n        \\\"tracking\\\": {\\n            \\\"status\\\": \\\"accepted\\\",\\n            \\\"type\\\": \\\"confirmation\\\"\\n        },\\n        \\\"status\\\": \\\"booked\\\",\\n        \\\"type\\\": \\\"cardTransfer\\\"\\n    },\\n    \\\"environment\\\": \\\"test\\\",\\n    \\\"type\\\": \\\"balancePlatform.transfer.updated\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<h2>Payout failed<\/h2>\n<p>The payout transfer can fail if it is rejected by an external banking system and any automatic retries are unsuccessful.<\/p>\n<p>When a payout transfer fails, Adyen sends a  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhook with:<\/p>\n<ul>\n<li><code>status<\/code>: <span translate=\"no\"><strong>failed<\/strong><\/span><\/li>\n<li>The <code>transactionId<\/code><\/li>\n<li>The <code>reason<\/code> for the failure. For more information, see <a href=\"#reason-codes\">Reason codes<\/a>.<\/li>\n<\/ul>\n<p>The following tabs show examples of  <a href=\"https:\/\/docs.adyen.com\/api-explorer\/transfer-webhooks\/latest\/post\/balancePlatform.transfer.updated\" class=\"codeLabel  external-link no-image\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">balancePlatform.transfer.updated<\/a> webhooks for one-off and recurring payouts.<\/p>\n\n<div id=\"tab8T1E0\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;One-off payout with raw card data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer failed&#039;\\&quot; :id=\\&quot;&#039;transfer-failed-raw&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;Amsterdam\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;NL\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;1011DJ\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;NH\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;Simon Carmiggeltstraat 6-50\\\\\\&quot;\\\\n                    },\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;expiryMonth\\\\\\&quot;: \\\\\\&quot;03\\\\\\&quot;,\\\\n                    \\\\\\&quot;expiryYear\\\\\\&quot;: \\\\\\&quot;2030\\\\\\&quot;,\\\\n                    \\\\\\&quot;number\\\\\\&quot;: \\\\\\&quot;498843******4305\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:57+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000004\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;networkReason\\\\\\&quot;: {\\\\n            \\\\\\&quot;code\\\\\\&quot;: \\\\\\&quot;14\\\\\\&quot;,\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Invalid card number\\\\\\&quot;,\\\\n            \\\\\\&quot;namespace\\\\\\&quot;: \\\\\\&quot;iso8583ResponseCode\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;raw&quot;,&quot;oldTabId&quot;:&quot;one-off-failed-raw_1&quot;,&quot;relation&quot;:&quot;raw&quot;},{&quot;title&quot;:&quot;One-off payout with tokenized data&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer failed&#039;\\&quot; :id=\\&quot;&#039;transfer-failed-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:57+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000004\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;token&quot;,&quot;oldTabId&quot;:&quot;one-off-failed-tokenized_2&quot;,&quot;relation&quot;:&quot;token&quot;},{&quot;title&quot;:&quot;Recurring payout&quot;,&quot;content&quot;:&quot;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Transfer failed&#039;\\&quot; :id=\\&quot;&#039;transfer-failed-token&#039;\\&quot; :code-data=&#039;[{\\&quot;language\\&quot;:\\&quot;json\\&quot;,\\&quot;tabTitle\\&quot;:\\&quot;\\&quot;,\\&quot;content\\&quot;:\\&quot;{ \\\\n    \\\\\\&quot;data\\\\\\&quot;: {\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;value\\\\\\&quot;: 100\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the balance account\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;card\\\\\\&quot;,\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;card\\\\\\&quot;: {\\\\n                \\\\\\&quot;cardHolder\\\\\\&quot;: {\\\\n                    \\\\\\&quot;firstName\\\\\\&quot;: \\\\\\&quot;Albert\\\\\\&quot;,\\\\n                    \\\\\\&quot;lastName\\\\\\&quot;: \\\\\\&quot;Klaassen\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the cardholder\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;individual\\\\\\&quot;,\\\\n                    \\\\\\&quot;address\\\\\\&quot;: {\\\\n                        \\\\\\&quot;city\\\\\\&quot;: \\\\\\&quot;San Francisco\\\\\\&quot;,\\\\n                        \\\\\\&quot;country\\\\\\&quot;: \\\\\\&quot;US\\\\\\&quot;,\\\\n                        \\\\\\&quot;line1\\\\\\&quot;: \\\\\\&quot;274\\\\\\&quot;,\\\\n                        \\\\\\&quot;line2\\\\\\&quot;: \\\\\\&quot;Brannan St\\\\\\&quot;,\\\\n                        \\\\\\&quot;postalCode\\\\\\&quot;: \\\\\\&quot;94107\\\\\\&quot;,\\\\n                        \\\\\\&quot;stateOrProvince\\\\\\&quot;: \\\\\\&quot;CA\\\\\\&quot;\\\\n                    }\\\\n                },\\\\n                \\\\\\&quot;cardIdentification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;storedPaymentMethodId\\\\\\&quot;: \\\\\\&quot;ZMV627QSCQVDKG66\\\\\\&quot;\\\\n                }\\\\n            }\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:16+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-11T13:14:18+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;:\\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;:-100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:48+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 100\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:57+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000004\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: 100,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN0000000000000000000000003EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-06-13T17:35:37+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;4VXLNQ639Q8HVWJT\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;unknown\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your internal reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;failed\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;cardTransfer\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&quot;,\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;\\\\n}\\&quot;}]&#039; :enable-copy-link-to-code-block=\\&quot;true\\&quot; :code-sample-card-size=\\&quot;&#039;fullsize&#039;\\&quot;&gt;&lt;\\\/code-sample&gt;\\n&lt;\\\/div&gt;\\n&quot;,&quot;altTitle&quot;:&quot;recurring&quot;,&quot;oldTabId&quot;:&quot;recurring-failed_3&quot;,&quot;relation&quot;:&quot;recurring&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n<h2 id=\"reason-codes\">Reason codes<\/h2>\n<p>The following table describes the reasons why a transfer may be rejected or returned by the counterparty's bank.<\/p>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Reason code<\/th>\n<th style=\"text-align: left;\">Description<\/th>\n<th style=\"text-align: left;\">Remediating action<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\"><code>amountLimitExceeded<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank or the payment system rejected this transfer because the value is too high.<\/td>\n<td style=\"text-align: left;\">Retry the transfer with a lower amount or with a different route.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyBankUnavailable<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank is unavailable for real-time processing.<\/td>\n<td style=\"text-align: left;\">Retry the transfer later or with a different route.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyAccountNotFound<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank is unable to locate the account with the provided details.<\/td>\n<td style=\"text-align: left;\">Check the card details provided in the transfer and retry.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyAccountClosed<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank reported that the account exists, but it is closed.<\/td>\n<td style=\"text-align: left;\">Check the card details provided in the transfer and retry.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyAccountBlocked<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank reported that the account is blocked or suspended.<\/td>\n<td style=\"text-align: left;\">Check the card details provided in the transfer and retry.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyAddressRequired<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank requires the account holder's address to credit this transfer to the account.<\/td>\n<td style=\"text-align: left;\">Retry the transfer with full street address.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>counterpartyBankTimedOut<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank timed out while trying to process this request in real-time.<\/td>\n<td style=\"text-align: left;\">Retry the transfer later or with a different route.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>refusedByCounterpartyBank<\/code><\/td>\n<td style=\"text-align: left;\">The counterparty's bank refused the transfer without providing any further information regarding the underlying reason.<\/td>\n<td style=\"text-align: left;\">Check the card details provided in the transfer and\/or contact the counterparty's bank.<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\"><code>unknown<\/code><\/td>\n<td style=\"text-align: left;\">No specific reason is known by Adyen for the failure, or the reported reason does not correspond to any of the codes above.<\/td>\n<td style=\"text-align: left;\">Check the card details provided in the transfer and retry. If problem persists, further manual investigation might be needed.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>","url":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service\/pay-out-to-cards\/payout-webhooks","articleFields":{"description":"Find out which webhooks Adyen sends for payout-related events.","feedback_component":true,"parameters":{"transferType":"payout","integrationType":"payouts","directoryPath":"\/payouts\/payout-service","counterpartyType":"card","model":"platform"},"type":"page","_expandable":{"operations":""},"status":"current","filters_component":false,"last_edit_on":"21-03-2023 10:36"},"algolia":{"url":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service\/pay-out-to-cards\/payout-webhooks","title":"Webhooks for card payouts","content":"When funds are paid out from a balance account to a user's bank account, Adyen sends webhook notifications to inform your platform of the progress and status changes of the transfer. Use this guide to understand which events are sent and how to configure your system to process these payout-related webhooks successfully.\nWhen a payout is triggered in your platform, Adyen sends the following kinds of webhooks:\n\n balancePlatform.transfer.created, which informs your server that an outgoing transfer is initiated from a balance account in your platform.\n balancePlatform.transfer.updated, which informs your server of the transfer status changes.\n\nThis page explains how to identify webhooks related to card payouts and shows examples for the webhooks that you receive for every transfer status.\nRequirements\nBefore you begin, take into account the following requirements and preparations.\n\n\n\nRequirement\nDescription\n\n\n\n\nIntegration type\nAn Adyen payout service integration.\n\n\nWebhooks\nTo keep track of payout-related events in your platform, make sure that:  Your server must be able to receive and accept webhooks.You have subscribed to Transfer webhooks and Transaction webhooks in your Customer Area.\n\n\n\nIdentify payout-related webhooks\nYou can identify transfer webhooks triggered by payout-related events by looking at the following values:\n\n\n\nParameter\nDescription\nValue\n\n\n\n\n category\nSpecifies the category of the transfer.\ncard\n\n\n direction\nThe direction of the transfer based on the balance account.\noutgoing\n\n\n type\nSpecifies the type of the transfer.\ncardTransfer\n\n\n\nAdyen sends webhooks for the following payout events:\n\nPayout initiated\nPayout authorised\nPayout booked\nPayout pending\nPayout accepted\nPayout failed\n\nThe following sections provide code samples for the events that trigger webhooks. These samples consider a use case where you pay out EUR 100.00 from a balance account to a Mastercard or Visa card.\nPayout initiated\nWhen your user initiates a transfer to a Mastercard or Visa card, Adyen sends a  balancePlatform.transfer.created webhook to inform your server that an outgoing transfer request has been created. The webhook provides information about the transfer, such as:\n\nThe amount of the payout\nThe reference for the payout\nThe referenceForBeneficiary\nYour user's balanceAccount from which the funds will be deducted\nDetails of the accountHolder linked to your user's balance account.\nDetails of the counterparty in the transfer, which is your user's transfer instrument.\nThe bookingDate when the payout was requested.\nThe id of the corresponding transfer.\n\nThe following tabs show examples of  balancePlatform.transfer.created webhooks for one-off and recurring payouts.\n\n\n    \n        \n        \n    \n\n\nPayout authorised\nWhen the transfer request for the payout is authorised, Adyen sends a  balancePlatform.transfer.updated webhook to inform your server that the transfer amount has been reserved on the account. This webhook includes the status authorised.\nThe following tabs show examples of  balancePlatform.transfer.updated webhooks for one-off and recurring payouts.\n\n\n    \n        \n        \n    \n\n\nPayout booked\nWhen the funds are deducted from your user's balance account, Adyen sends a  balancePlatform.transfer.updated webhook with:\n\ndirection: outgoing\nstatus: booked\nevents.transactionId: ID of the transaction\n\nThis status is not final. The transfer may still fail if, for example, the transfer is rejected by the scheme or issuing bank.\nThe following tabs show examples of  balancePlatform.transfer.updated webhooks for one-off and recurring payouts.\n\n\n    \n        \n        \n    \n\n\nPayout pending\nAfter the funds are deducted from your user's balance account, the transfer is automatically analyzed to ensure that it complies with Adyen's policies. If a transfer is flagged, Adyen reviews the transfer.\nIn order to speed up the screening process and reduce the amount of manual effort needed, we recommend that you provide as much information as possible in the transfer request. For example, include all counterparty details in the  counterparty.card.cardHolder object.\nIn this case, Adyen sends a  balancePlatform.transfer.updated webhook with a tracking event, specifying the following trackingData details:\n\nstatus:  pending\ntype: internalReview\n\nThe following tabs show examples of  balancePlatform.transfer.updated webhooks for one-off and recurring payouts.\n\n\n    \n        \n        \n    \n\n\nIf the transfer fails Adyen's review process, we send a  balancePlatform.transfer.updated webhook with a tracking event, specifying the following trackingData:\n\nreason: refusedForRegulatoryReasons\nstatus: failed\ntype: internalReview\n\nIf this is the case, contact our Support Team.\nPayout accepted\nWhen a card payout request is accepted for processing by the card schemes, Adyen sends a  balancePlatform.transfer.updated webhook to your server.\nThe webhook includes a tracking event, which contains the following trackingData details:\n\nstatus: accepted\ntype: confirmation\n\nThis event confirms that the scheme will process the payout. You can use this to let your counterparty know that their funds will arrive soon.\nThe following example shows a  balancePlatform.transfer.updated webhook for a payout request that has been accepted:\n\n    \n\nPayout failed\nThe payout transfer can fail if it is rejected by an external banking system and any automatic retries are unsuccessful.\nWhen a payout transfer fails, Adyen sends a  balancePlatform.transfer.updated webhook with:\n\nstatus: failed\nThe transactionId\nThe reason for the failure. For more information, see Reason codes.\n\nThe following tabs show examples of  balancePlatform.transfer.updated webhooks for one-off and recurring payouts.\n\n\n    \n        \n        \n    \n\n\nReason codes\nThe following table describes the reasons why a transfer may be rejected or returned by the counterparty's bank.\n\n\n\nReason code\nDescription\nRemediating action\n\n\n\n\namountLimitExceeded\nThe counterparty's bank or the payment system rejected this transfer because the value is too high.\nRetry the transfer with a lower amount or with a different route.\n\n\ncounterpartyBankUnavailable\nThe counterparty's bank is unavailable for real-time processing.\nRetry the transfer later or with a different route.\n\n\ncounterpartyAccountNotFound\nThe counterparty's bank is unable to locate the account with the provided details.\nCheck the card details provided in the transfer and retry.\n\n\ncounterpartyAccountClosed\nThe counterparty's bank reported that the account exists, but it is closed.\nCheck the card details provided in the transfer and retry.\n\n\ncounterpartyAccountBlocked\nThe counterparty's bank reported that the account is blocked or suspended.\nCheck the card details provided in the transfer and retry.\n\n\ncounterpartyAddressRequired\nThe counterparty's bank requires the account holder's address to credit this transfer to the account.\nRetry the transfer with full street address.\n\n\ncounterpartyBankTimedOut\nThe counterparty's bank timed out while trying to process this request in real-time.\nRetry the transfer later or with a different route.\n\n\n\n\n\nrefusedByCounterpartyBank\nThe counterparty's bank refused the transfer without providing any further information regarding the underlying reason.\nCheck the card details provided in the transfer and\/or contact the counterparty's bank.\n\n\nunknown\nNo specific reason is known by Adyen for the failure, or the reported reason does not correspond to any of the codes above.\nCheck the card details provided in the transfer and retry. If problem persists, further manual investigation might be needed.\n\n\n","type":"page","locale":"pt","boost":16,"hierarchy":{"lvl0":"Home","lvl1":"Adyen Payouts","lvl2":"Payouts and Payments","lvl3":"Pay out to third-party cards","lvl4":"Webhooks for card payouts"},"hierarchy_url":{"lvl0":"https:\/\/docs.adyen.com\/pt","lvl1":"https:\/\/docs.adyen.com\/pt\/payouts","lvl2":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service","lvl3":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service\/pay-out-to-cards","lvl4":"\/pt\/payouts\/payout-service\/pay-out-to-cards\/payout-webhooks"},"levels":5,"category":"","category_color":"","tags":["Webhooks","payouts"]},"articleFiles":{"transfer-accepted-raw.json":"<p alt=\"\">transfer-accepted-raw.json<\/p>","transfer-authorised-raw.json":"<p alt=\"\">transfer-authorised-raw.json<\/p>","transfer-authorised-token.json":"<p alt=\"\">transfer-authorised-token.json<\/p>","transfer-booked-raw.json":"<p alt=\"\">transfer-booked-raw.json<\/p>","transfer-booked-token.json":"<p alt=\"\">transfer-booked-token.json<\/p>","transfer-credited-raw.json":"<p alt=\"\">transfer-credited-raw.json<\/p>","transfer-credited-token.json":"<p alt=\"\">transfer-credited-token.json<\/p>","transfer-failed-raw.json":"<p alt=\"\">transfer-failed-raw.json<\/p>","transfer-failed-token.json":"<p alt=\"\">transfer-failed-token.json<\/p>","transfer-initiated-raw.json":"<p alt=\"\">transfer-initiated-raw.json<\/p>","transfer-initiated-token.json":"<p alt=\"\">transfer-initiated-token.json<\/p>","transfer-pending-failed.json":"<p alt=\"\">transfer-pending-failed.json<\/p>","transfer-pending-raw.json":"<p alt=\"\">transfer-pending-raw.json<\/p>","transfer-pending-token.json":"<p alt=\"\">transfer-pending-token.json<\/p>"}}
