{"title":"Webhooks for internal transfers","category":"default","creationDate":1776961628,"content":"<p>When you initiate an internal transfer between balance accounts in your platform, Adyen sends two 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 funds will be transferred between the balance accounts.<\/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 changes in the status of the transfer.<\/li>\n<\/ul>\n<p>For each event you receive two sets webhooks:<\/p>\n<ul>\n<li>Webhooks for the source balance account where you initiate the transfer as an outgoing request.<\/li>\n<li>Webhooks for the target balance account, where you receive the transfer as an incoming request.<\/li>\n<\/ul>\n<p>To keep track of events related to internal transfers in your platform, make sure that:<\/p>\n<ul>\n<li>Your server can <a href=\"\/pt\/development-resources\/webhooks\/configure-and-manage\">receive and accept webhooks<\/a>.<\/li>\n<li>You subscribed to the <strong>Transfer webhooks<\/strong> in your <a href=\"https:\/\/ca-test.adyen.com\/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" class=\"external-link no-image\">test Customer Area<\/a>.<\/li>\n<\/ul>\n<h2>Internal funds transfer<\/h2>\n<p>You can identify transfer webhooks triggered by internal funds transfers by 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;\">The category of the transfer.<\/td>\n<td style=\"text-align: left;\"><strong>internal<\/strong><\/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 request.<\/td>\n<td style=\"text-align: left;\"><strong>outgoing<\/strong> for the source balance account<br> <strong>incoming<\/strong> for the target balance account<\/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;\">The type of internal transfer.<\/td>\n<td style=\"text-align: left;\"><strong>internalTransfer<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>For an internal sweep or on-demand transfer, you receive webhooks for the following events:<\/p>\n<ul>\n<li>The transfer is <a href=\"#internal-push-transfer-initiated\">initiated<\/a>.<\/li>\n<li>The transfer is <a href=\"#internal-push-transfer-authorized\">authorized<\/a>. This indicates that the funds are reserved.<\/li>\n<li>The transfer is <a href=\"#internal-push-transfer-booked\">booked<\/a>.<\/li>\n<\/ul>\n<p>You receive these webhooks for each of the balance accounts involved in the transfer.<\/p>\n<p>The following is an example for an internal transfer request:<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Internal transfer request'\" :id=\"'internal-transfer'\" :code-data=\"[{&quot;language&quot;:&quot;bash&quot;,&quot;tabTitle&quot;:&quot;curl&quot;,&quot;content&quot;:&quot;curl https:\\\/\\\/balanceplatform-api-test.adyen.com\\\/btl\\\/v4\\\/transfers \\\\\\n-H 'x-api-key: ADYEN_BALANCE_PLATFORM_API_KEY' \\\\\\n-H 'content-type: application\\\/json' \\\\\\n-X POST \\\\\\n-d '{\\n   \\&quot;amount\\&quot;: {\\n      \\&quot;currency\\&quot;: \\&quot;EUR\\&quot;,\\n      \\&quot;value\\&quot;: 10000\\n   },\\n   \\&quot;balanceAccountId\\&quot;: \\&quot;BA00000000000000000000001\\&quot;,\\n   \\&quot;counterparty\\&quot;: {\\n      \\&quot;balanceAccountId\\&quot;: \\&quot;BA00000000000000000000002\\&quot;\\n   },\\n   \\&quot;category\\&quot; : \\&quot;internal\\&quot;,\\n   \\&quot;referenceForBeneficiary\\&quot;: \\&quot;Your-reference-sent-to-the-counterparty\\&quot;,\\n   \\&quot;description\\&quot;: \\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;,\\n   \\&quot;reference\\&quot;: \\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;\\n}'&quot;},{&quot;language&quot;:&quot;java&quot;,&quot;tabTitle&quot;:&quot;Java&quot;,&quot;content&quot;:&quot;\\\/\\\/ Adyen Java API Library v33.0.0\\nimport com.adyen.Client;\\nimport com.adyen.enums.Environment;\\nimport com.adyen.model.transfers.*;\\nimport java.time.OffsetDateTime;\\nimport java.util.*;\\nimport com.adyen.model.RequestOptions;\\nimport com.adyen.service.transfers.*;\\n\\nClient client = new Client(\\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;, Environment.TEST);\\n\\n\\\/\\\/ Create the request object(s)\\nAmount amount = new Amount()\\n  .currency(\\&quot;EUR\\&quot;)\\n  .value(10000L);\\n\\nCounterpartyInfoV3 counterpartyInfoV3 = new CounterpartyInfoV3()\\n  .balanceAccountId(\\&quot;BA00000000000000000000002\\&quot;);\\n\\nTransferInfo transferInfo = new TransferInfo()\\n  .balanceAccountId(\\&quot;BA00000000000000000000001\\&quot;)\\n  .reference(\\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;)\\n  .amount(amount)\\n  .referenceForBeneficiary(\\&quot;Your-reference-sent-to-the-counterparty\\&quot;)\\n  .counterparty(counterpartyInfoV3)\\n  .description(\\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;)\\n  .category(TransferInfo.CategoryEnum.INTERNAL);\\n\\n\\\/\\\/ Send the request\\nTransfersApi service = new TransfersApi(client);\\nTransfer response = service.transferFunds(transferInfo, new RequestOptions().idempotencyKey(\\&quot;UUID\\&quot;));&quot;},{&quot;language&quot;:&quot;php&quot;,&quot;tabTitle&quot;:&quot;PHP&quot;,&quot;content&quot;:&quot;&lt;?php\\n\\\/\\\/ Adyen PHP API Library v24.0.0\\nuse Adyen\\\\Client;\\nuse Adyen\\\\Environment;\\nuse Adyen\\\\Model\\\\Transfers\\\\Amount;\\nuse Adyen\\\\Model\\\\Transfers\\\\CounterpartyInfoV3;\\nuse Adyen\\\\Model\\\\Transfers\\\\TransferInfo;\\nuse Adyen\\\\Service\\\\Transfers\\\\TransfersApi;\\n\\n$client = new Client();\\n$client-&gt;setXApiKey(\\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;);\\n$client-&gt;setEnvironment(Environment::TEST);\\n\\n\\n\\\/\\\/ Create the request object(s)\\n$amount = new Amount();\\n$amount\\n  -&gt;setCurrency(\\&quot;EUR\\&quot;)\\n  -&gt;setValue(10000);\\n\\n$counterpartyInfoV3 = new CounterpartyInfoV3();\\n$counterpartyInfoV3\\n  -&gt;setBalanceAccountId(\\&quot;BA00000000000000000000002\\&quot;);\\n\\n$transferInfo = new TransferInfo();\\n$transferInfo\\n  -&gt;setBalanceAccountId(\\&quot;BA00000000000000000000001\\&quot;)\\n  -&gt;setReference(\\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;)\\n  -&gt;setAmount($amount)\\n  -&gt;setReferenceForBeneficiary(\\&quot;Your-reference-sent-to-the-counterparty\\&quot;)\\n  -&gt;setCounterparty($counterpartyInfoV3)\\n  -&gt;setDescription(\\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;)\\n  -&gt;setCategory(\\&quot;internal\\&quot;);\\n\\n$requestOptions['idempotencyKey'] = 'UUID';\\n\\n\\\/\\\/ Send the request\\n$service = new TransfersApi($client);\\n$response = $service-&gt;transferFunds($transferInfo, $requestOptions);&quot;},{&quot;language&quot;:&quot;cs&quot;,&quot;tabTitle&quot;:&quot;C#&quot;,&quot;content&quot;:&quot;\\\/\\\/ Adyen .net API Library v28.0.0\\nusing Adyen;\\nusing Environment = Adyen.Model.Environment;\\nusing Adyen.Model;\\nusing Adyen.Model.Transfers;\\nusing Adyen.Service.Transfers;\\n\\nvar config = new Config()\\n{\\n    XApiKey = \\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;,\\n    Environment = Environment.Test\\n};\\nvar client = new Client(config);\\n\\n\\\/\\\/ Create the request object(s)\\nAmount amount = new Amount\\n{\\n  Currency = \\&quot;EUR\\&quot;,\\n  Value = 10000\\n};\\n\\nCounterpartyInfoV3 counterpartyInfoV3 = new CounterpartyInfoV3\\n{\\n  BalanceAccountId = \\&quot;BA00000000000000000000002\\&quot;\\n};\\n\\nTransferInfo transferInfo = new TransferInfo\\n{\\n  BalanceAccountId = \\&quot;BA00000000000000000000001\\&quot;,\\n  Reference = \\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;,\\n  Amount = amount,\\n  ReferenceForBeneficiary = \\&quot;Your-reference-sent-to-the-counterparty\\&quot;,\\n  Counterparty = counterpartyInfoV3,\\n  Description = \\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;,\\n  Category = TransferInfo.CategoryEnum.Internal\\n};\\n\\n\\\/\\\/ Send the request\\nvar service = new TransfersService(client);\\nvar response = service.TransferFunds(transferInfo, requestOptions: new RequestOptions { IdempotencyKey = \\&quot;UUID\\&quot;});&quot;},{&quot;language&quot;:&quot;js&quot;,&quot;tabTitle&quot;:&quot;NodeJS (JavaScript)&quot;,&quot;content&quot;:&quot;\\\/\\\/ Adyen Node API Library v23.3.0\\nconst { Client, TransfersAPI } = require('@adyen\\\/api-library');\\n\\nconst client = new Client({ apiKey: \\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;, environment: \\&quot;TEST\\&quot; });\\n\\n\\\/\\\/ Create the request object(s)\\nconst transferInfo = {\\n  amount: {\\n    currency: \\&quot;EUR\\&quot;,\\n    value: 10000\\n  },\\n  balanceAccountId: \\&quot;BA00000000000000000000001\\&quot;,\\n  counterparty: {\\n    balanceAccountId: \\&quot;BA00000000000000000000002\\&quot;\\n  },\\n  category: \\&quot;internal\\&quot;,\\n  referenceForBeneficiary: \\&quot;Your-reference-sent-to-the-counterparty\\&quot;,\\n  description: \\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;,\\n  reference: \\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;\\n}\\n\\n\\\/\\\/ Send the request\\nconst transfersAPI = new TransfersAPI(client);\\nconst response = transfersAPI.TransfersApi.transferFunds(transferInfo, { idempotencyKey: \\&quot;UUID\\&quot; });&quot;},{&quot;language&quot;:&quot;go&quot;,&quot;tabTitle&quot;:&quot;Go&quot;,&quot;content&quot;:&quot;\\\/\\\/ Adyen Go API Library v17.0.0\\nimport (\\n  \\&quot;context\\&quot;\\n  \\&quot;github.com\\\/adyen\\\/adyen-go-api-library\\\/v17\\\/src\\\/common\\&quot;\\n  \\&quot;github.com\\\/adyen\\\/adyen-go-api-library\\\/v17\\\/src\\\/adyen\\&quot;\\n  \\&quot;github.com\\\/adyen\\\/adyen-go-api-library\\\/v17\\\/src\\\/transfers\\&quot;\\n)\\nclient := adyen.NewClient(&amp;common.Config{\\n  ApiKey:      \\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;,\\n  Environment: common.TestEnv,\\n})\\n\\n\\\/\\\/ Create the request object(s)\\namount := transfers.Amount{\\n  Currency: \\&quot;EUR\\&quot;,\\n  Value: 10000,\\n}\\n\\ncounterpartyInfoV3 := transfers.CounterpartyInfoV3{\\n  BalanceAccountId: common.PtrString(\\&quot;BA00000000000000000000002\\&quot;),\\n}\\n\\ntransferInfo := transfers.TransferInfo{\\n  BalanceAccountId: common.PtrString(\\&quot;BA00000000000000000000001\\&quot;),\\n  Reference: common.PtrString(\\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;),\\n  Amount: amount,\\n  ReferenceForBeneficiary: common.PtrString(\\&quot;Your-reference-sent-to-the-counterparty\\&quot;),\\n  Counterparty: counterpartyInfoV3,\\n  Description: common.PtrString(\\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;),\\n  Category: \\&quot;internal\\&quot;,\\n}\\n\\n\\\/\\\/ Send the request\\nservice := client.Transfers()\\nreq := service.TransfersApi.TransferFundsInput().IdempotencyKey(\\&quot;UUID\\&quot;).TransferInfo(transferInfo)\\nres, httpRes, err := service.TransfersApi.TransferFunds(context.Background(), req)&quot;},{&quot;language&quot;:&quot;py&quot;,&quot;tabTitle&quot;:&quot;Python&quot;,&quot;content&quot;:&quot;# Adyen Python API Library v13.3.0\\nimport Adyen\\n\\nadyen = Adyen.Adyen()\\nadyen.client.xapikey = \\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;\\nadyen.client.platform = \\&quot;test\\&quot; # The environment to use library in.\\n\\n# Create the request object(s)\\njson_request = {\\n  \\&quot;amount\\&quot;: {\\n    \\&quot;currency\\&quot;: \\&quot;EUR\\&quot;,\\n    \\&quot;value\\&quot;: 10000\\n  },\\n  \\&quot;balanceAccountId\\&quot;: \\&quot;BA00000000000000000000001\\&quot;,\\n  \\&quot;counterparty\\&quot;: {\\n    \\&quot;balanceAccountId\\&quot;: \\&quot;BA00000000000000000000002\\&quot;\\n  },\\n  \\&quot;category\\&quot;: \\&quot;internal\\&quot;,\\n  \\&quot;referenceForBeneficiary\\&quot;: \\&quot;Your-reference-sent-to-the-counterparty\\&quot;,\\n  \\&quot;description\\&quot;: \\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;,\\n  \\&quot;reference\\&quot;: \\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;\\n}\\n\\n# Send the request\\nresult = adyen.transfers.transfers_api.transfer_funds(request=json_request, idempotency_key=\\&quot;UUID\\&quot;)&quot;},{&quot;language&quot;:&quot;rb&quot;,&quot;tabTitle&quot;:&quot;Ruby&quot;,&quot;content&quot;:&quot;# Adyen Ruby API Library v10.1.1\\nrequire \\&quot;adyen-ruby-api-library\\&quot;\\n\\nadyen = Adyen::Client.new\\nadyen.api_key = 'ADYEN_BALANCE_PLATFORM_API_KEY'\\nadyen.env = :test # Set to \\&quot;live\\&quot; for live environment\\n\\n# Create the request object(s)\\nrequest_body = {\\n  :amount =&gt; {\\n    :currency =&gt; 'EUR',\\n    :value =&gt; 10000\\n  },\\n  :balanceAccountId =&gt; 'BA00000000000000000000001',\\n  :counterparty =&gt; {\\n    :balanceAccountId =&gt; 'BA00000000000000000000002'\\n  },\\n  :category =&gt; 'internal',\\n  :referenceForBeneficiary =&gt; 'Your-reference-sent-to-the-counterparty',\\n  :description =&gt; 'YOUR_DESCRIPTION_OF_THE_TRANSFER',\\n  :reference =&gt; 'YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER'\\n}\\n\\n# Send the request\\nresult = adyen.transfers.transfers_api.transfer_funds(request_body, headers: { 'Idempotency-Key' =&gt; 'UUID' })&quot;},{&quot;language&quot;:&quot;ts&quot;,&quot;tabTitle&quot;:&quot;NodeJS (TypeScript)&quot;,&quot;content&quot;:&quot;\\\/\\\/ Adyen Node API Library v23.3.0\\nimport { Client, TransfersAPI, Types } from \\&quot;@adyen\\\/api-library\\&quot;;\\n\\nconst client = new Client({ apiKey: \\&quot;ADYEN_BALANCE_PLATFORM_API_KEY\\&quot;, environment: \\&quot;TEST\\&quot; });\\n\\n\\\/\\\/ Create the request object(s)\\nconst amount: Types.transfers.Amount = {\\n  currency: \\&quot;EUR\\&quot;,\\n  value: 10000\\n};\\n\\nconst counterpartyInfoV3: Types.transfers.CounterpartyInfoV3 = {\\n  balanceAccountId: \\&quot;BA00000000000000000000002\\&quot;\\n};\\n\\nconst transferInfo: Types.transfers.TransferInfo = {\\n  balanceAccountId: \\&quot;BA00000000000000000000001\\&quot;,\\n  reference: \\&quot;YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER\\&quot;,\\n  amount: amount,\\n  referenceForBeneficiary: \\&quot;Your-reference-sent-to-the-counterparty\\&quot;,\\n  counterparty: counterpartyInfoV3,\\n  description: \\&quot;YOUR_DESCRIPTION_OF_THE_TRANSFER\\&quot;,\\n  category: Types.transfers.TransferInfo.CategoryEnum.Internal\\n};\\n\\n\\\/\\\/ Send the request\\nconst transfersAPI = new TransfersAPI(client);\\nconst response = transfersAPI.TransfersApi.transferFunds(transferInfo, { idempotencyKey: \\&quot;UUID\\&quot; });&quot;}]\" :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<p>Expand the sections below to see the webhooks you would receive for the example transfer request.<\/p>\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#1-internal-transfer-initiated\">\n                                    <h4 class=\"adl-accordion__title\">1. Internal transfer initiated<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When a scheduled or on-demand internal transfer is triggered, we send  <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 with <code>status<\/code> <strong>received<\/strong>, to inform your server that funds will be transferred between balance accounts in your platform.<\/p>\n\n<div id=\"tabybCvO\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;Source balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the source balance account, the webhook indicates that funds will be debited from that account:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;outgoing&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.received&lt;\\\/code&gt;: a negative amount&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Outgoing transfer request received&#039;\\&quot; :id=\\&quot;&#039;received-outgoing&#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;id\\\\\\&quot;: \\\\\\&quot;1WIZQB5XXY7MHOXH\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;,\\\\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;: -1000\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 1,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&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;received-source&quot;,&quot;oldTabId&quot;:&quot;received-source_1&quot;,&quot;relation&quot;:&quot;&quot;},{&quot;title&quot;:&quot;Target balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the target balance account, the webhook indicates that funds will be credited to that account:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;incoming&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.received&lt;\\\/code&gt;: a positive amount&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Incoming transfer request received&#039;\\&quot; :id=\\&quot;&#039;received-incoming&#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;id\\\\\\&quot;: \\\\\\&quot;2WT1N05XXY7P9XH9\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000002\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;,\\\\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;: 1000\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;incoming\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 1,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&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;received-target&quot;,&quot;oldTabId&quot;:&quot;received-target_2&quot;,&quot;relation&quot;:&quot;&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#2-internal-transfer-authorized\">\n                                    <h4 class=\"adl-accordion__title\">2. Internal transfer authorized<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When the scheduled or on-demand internal push transfer is authorized, we send  <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 with <code>status<\/code> <strong>authorised<\/strong>, to inform your server that the funds have been reserved on the source and target balance accounts.<\/p>\n\n<div id=\"tabzjpSW\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;Source balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the source balance account, the webhook indicates that the transfer amount has been reserved to be debited:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;outgoing&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.reserved&lt;\\\/code&gt;: a negative amount&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Outgoing transfer authorized&#039;\\&quot; :id=\\&quot;&#039;authorised-outgoing&#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;id\\\\\\&quot;: \\\\\\&quot;1WIZQB5XXY7MHOXH\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;,\\\\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;: -1000\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 1000,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 2,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&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;authorised-source&quot;,&quot;oldTabId&quot;:&quot;authorised-source_1&quot;,&quot;relation&quot;:&quot;&quot;},{&quot;title&quot;:&quot;Target balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the target balance account, the webhook indicates that the transfer amount has been reserved to be credited:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;incoming&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.reserved&lt;\\\/code&gt;: a positive amount&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Incoming transfer authorized&#039;\\&quot; :id=\\&quot;&#039;authorised-incoming&#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;id\\\\\\&quot;: \\\\\\&quot;2WT1N05XXY7P9XH9\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000002\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;,\\\\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;: 1000\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;incoming\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: -1000,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 2,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&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;authorised-target&quot;,&quot;oldTabId&quot;:&quot;authorised-target_2&quot;,&quot;relation&quot;:&quot;&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#3-internal-transfer-booked\">\n                                    <h4 class=\"adl-accordion__title\">3. Internal transfer booked<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When the scheduled or on-demand internal push transfer is booked, we send  <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 with <code>status<\/code> <strong>booked<\/strong>, to inform your server that the funds have been pushed from the source balance account to the target balance account.<\/p>\n\n<div id=\"tabNe2uO\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;Source balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the source balance account, the webhook indicates that the transfer amount has been debited, and where the funds were sent to:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;outgoing&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.balance&lt;\\\/code&gt;: a negative amount&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;counterparty.balanceAccountId&lt;\\\/code&gt;: the ID of the balance account that received the funds&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Outgoing transfer booked&#039;\\&quot; :id=\\&quot;&#039;booked-outgoing&#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;id\\\\\\&quot;: \\\\\\&quot;1WIZQB5XXY7MHOXH\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the source balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;,\\\\n      \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n      \\\\\\&quot;balances\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;balance\\\\\\&quot;: -1000\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n            \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 1000,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;NPDK00000000000000000000000003\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;balance\\\\\\&quot;: -1000\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n            \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN42CL8224223D5KKJWCXFXQ3QGLEUR\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n            \\\\\\&quot;valuDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 3,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n      \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN42CL8224223D5KKJWCXFXQ3QGLEUR\\\\\\&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;booked-source&quot;,&quot;oldTabId&quot;:&quot;booked-source_1&quot;,&quot;relation&quot;:&quot;&quot;},{&quot;title&quot;:&quot;Target balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;For the target balance account, the webhook indicates that the transfer amount has been credited, and where the funds came from:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;incoming&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;balances.balance&lt;\\\/code&gt;: a positive amount&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;counterparty.balanceAccountId&lt;\\\/code&gt;: the ID of the balance account that sent the funds&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Incoming transfer booked&#039;\\&quot; :id=\\&quot;&#039;booked-incoming&#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;id\\\\\\&quot;: \\\\\\&quot;2WT1N05XXY7P9XH9\\\\\\&quot;,\\\\n      \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n      \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000002\\\\\\&quot;,\\\\n         \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;amount\\\\\\&quot;: {\\\\n         \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n         \\\\\\&quot;value\\\\\\&quot;: 1000\\\\n      },\\\\n      \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n         \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the target balance account\\\\\\&quot;,\\\\n         \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;,\\\\n      \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n      \\\\\\&quot;balances\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;balance\\\\\\&quot;: 1000,\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n            \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n            \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n      \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n         \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n      },\\\\n      \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:05+02:00\\\\\\&quot;,\\\\n      \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;incoming\\\\\\&quot;,\\\\n      \\\\\\&quot;events\\\\\\&quot;: [\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000001\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: -1000,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n         },\\\\n         {\\\\n            \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;JDRF00000000000000000000000003\\\\\\&quot;,\\\\n            \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n               {\\\\n                  \\\\\\&quot;balance\\\\\\&quot;: 1000,\\\\n                  \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                  \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                  \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n               }\\\\n            ],\\\\n            \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n            \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;FWKP42CL8224223D5KKJWD6FXS3VQCEUR\\\\\\&quot;,\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n            \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-08-28T13:30:18+02:00\\\\\\&quot;\\\\n         }\\\\n      ],\\\\n      \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n      \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n      \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your-reference-for-the-recipient-of-the-transfer-request\\\\\\&quot;,\\\\n      \\\\\\&quot;sequenceNumber\\\\\\&quot;: 3,\\\\n      \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n      \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;FWKP42CL8224223D5KKJWD6FXS3VQCEUR\\\\\\&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;booked-target&quot;,&quot;oldTabId&quot;:&quot;booked-target_2&quot;,&quot;relation&quot;:&quot;&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<h2>Returned internal transfer<\/h2>\n<p>If needed, you can <a href=\"\/pt\/payouts\/payout-service\/internal-fund-transfers\/return-transfers\">return the funds<\/a> to the source balance account.<\/p>\n<p>The following is an example for an internal return request.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Return request'\" :id=\"'return request'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n   \\\"amount\\\": {\\n      \\\"value\\\": 1000,\\n      \\\"currency\\\": \\\"EUR\\\"\\n   },\\n   \\\"reference\\\": \\\"YOUR_REFERENCE_FOR_THE_RETURN\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n<p>Expand the sections below to see the webhooks you would receive for the example return request. The webhooks show that the return is handled as a modification of the original transfer.<\/p>\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#1-return-initiated\">\n                                    <h4 class=\"adl-accordion__title\">1. Return initiated<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When a return is initiated, 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 to inform your server that funds will be returned to the source balance account. The webhook has all the details of the original incoming transfer, and an additional <code>event<\/code> that includes the <code>modification<\/code> details:<\/p>\n<ul>\n<li><code>type<\/code> <strong>return<\/strong><\/li>\n<li><code>status<\/code>: <strong>received<\/strong><\/li>\n<li><code>direction<\/code>: <strong>outgoing<\/strong><\/li>\n<li><code>reference<\/code>: the reference from the return request<\/li>\n<\/ul>\n<p>This shows that the incoming funds in the original transfer are now outgoing.<\/p>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Return request received'\" :id=\"'return-received'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n    \\\"data\\\": {\\n        \\\"id\\\": \\\"1WT1N05XXY7P9XGB\\\",\\n        \\\"type\\\": \\\"internalTransfer\\\",\\n        \\\"amount\\\": {\\n            \\\"value\\\": 1000,\\n            \\\"currency\\\": \\\"EUR\\\"\\n        },\\n        \\\"events\\\": [\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000001\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"received\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:54+02:00\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000002\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"authorised\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": -1000,\\n                        \\\"reserved\\\": 1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:55+02:00\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000003\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"booked\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"balance\\\": 1000,\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 0,\\n                        \\\"reserved\\\": -1000\\n                    }\\n                ],\\n                \\\"valueDate\\\": \\\"2024-09-11T11:50:40+02:00\\\",\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:55+02:00\\\",\\n                \\\"transactionId\\\": \\\"EVJN4227C224222D5JLWTLKDJT4XMTEUR\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000004\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": -1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:53:22+02:00\\\",\\n                \\\"modification\\\": {\\n                    \\\"id\\\": \\\"1WT1N05XXY7P9XGB\\\",\\n                    \\\"type\\\": \\\"return\\\",\\n                    \\\"status\\\": \\\"received\\\",\\n                    \\\"direction\\\": \\\"outgoing\\\",\\n                    \\\"reference\\\": \\\"YOUR_REFERENCE_FOR_THE_RETURN\\\"\\n                }\\n            }\\n        ],\\n        \\\"reason\\\": \\\"approved\\\",\\n        \\\"status\\\": \\\"booked\\\",\\n        \\\"balances\\\": [\\n            {\\n                \\\"balance\\\": 1000,\\n                \\\"currency\\\": \\\"EUR\\\",\\n                \\\"received\\\": 0,\\n                \\\"reserved\\\": 0\\n            }\\n        ],\\n        \\\"category\\\": \\\"internal\\\",\\n        \\\"direction\\\": \\\"incoming\\\",\\n        \\\"reference\\\": \\\"Your reference for the transfer\\\",\\n        \\\"description\\\": \\\"Your description of the transfer\\\",\\n        \\\"categoryData\\\": {\\n            \\\"type\\\": \\\"internal\\\"\\n        },\\n        \\\"counterparty\\\": {\\n            \\\"balanceAccountId\\\": \\\"BA00000000000000000000001\\\"\\n        },\\n        \\\"creationDate\\\": \\\"2024-09-11T11:50:40+02:00\\\",\\n        \\\"accountHolder\\\": {\\n            \\\"id\\\": \\\"AH00000000000000000000002\\\",\\n            \\\"reference\\\": \\\"Your reference for the account holder\\\",\\n            \\\"description\\\": \\\"Your description of the account holder\\\"\\n        },\\n        \\\"balanceAccount\\\": {\\n            \\\"id\\\": \\\"BA00000000000000000000002\\\",\\n            \\\"description\\\": \\\"Your description of the balance account\\\"\\n        },\\n        \\\"sequenceNumber\\\": 4,\\n        \\\"balancePlatform\\\": \\\"YOUR_BALANCE_PLATFORM\\\",\\n        \\\"referenceForBeneficiary\\\": \\\"Your reference for the recipient of the transfer request\\\"\\n    },\\n    \\\"type\\\": \\\"balancePlatform.transfer.updated\\\",\\n    \\\"environment\\\": \\\"test\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#2-return-authorized\">\n                                    <h4 class=\"adl-accordion__title\">2. Return authorized<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When the return is authorized, 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 to inform your server that the return amount has been reserved. The webhook has all the details of the previous incoming transfer, and an additional <code>event<\/code> with the details of the <code>modification<\/code>:<\/p>\n<ul>\n<li><code>type<\/code> <strong>return<\/strong><\/li>\n<li><code>status<\/code>: <strong>authorised<\/strong><\/li>\n<li><code>direction<\/code>: <strong>outgoing<\/strong><\/li>\n<li><code>reference<\/code>: the reference from the return request<\/li>\n<\/ul>\n<div data-component-wrapper=\"code-sample\">\n    <code-sample :title=\"'Return authorized'\" :id=\"'return-authorised'\" :code-data='[{\"language\":\"json\",\"tabTitle\":\"\",\"content\":\"{\\n    \\\"data\\\": {\\n        \\\"id\\\": \\\"1WT1N05XXY7P9XGB\\\",\\n        \\\"type\\\": \\\"internalTransfer\\\",\\n        \\\"amount\\\": {\\n            \\\"value\\\": 1000,\\n            \\\"currency\\\": \\\"EUR\\\"\\n        },\\n        \\\"events\\\": [\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000001\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"received\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:54+02:00\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000002\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"authorised\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": -1000,\\n                        \\\"reserved\\\": 1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:55+02:00\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000003\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"status\\\": \\\"booked\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"balance\\\": 1000,\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 0,\\n                        \\\"reserved\\\": -1000\\n                    }\\n                ],\\n                \\\"valueDate\\\": \\\"2024-09-11T11:50:40+02:00\\\",\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:50:55+02:00\\\",\\n                \\\"transactionId\\\": \\\"EVJN4227C224222D5JLWTLKDJT4XMTEUR\\\"\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000004\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": -1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:53:22+02:00\\\",\\n                \\\"modification\\\": {\\n                    \\\"id\\\": \\\"1WT1N05XXY7P9XGB\\\",\\n                    \\\"type\\\": \\\"return\\\",\\n                    \\\"status\\\": \\\"received\\\",\\n                    \\\"direction\\\": \\\"outgoing\\\",\\n                    \\\"reference\\\": \\\"YOUR_REFERENCE_FOR_THE_RETURN\\\"\\n                }\\n            },\\n            {\\n                \\\"id\\\": \\\"EVJN00000000000000000000000005\\\",\\n                \\\"type\\\": \\\"accounting\\\",\\n                \\\"mutations\\\": [\\n                    {\\n                        \\\"currency\\\": \\\"EUR\\\",\\n                        \\\"received\\\": 1000,\\n                        \\\"reserved\\\": -1000\\n                    }\\n                ],\\n                \\\"bookingDate\\\": \\\"2024-09-11T11:53:37+02:00\\\",\\n                \\\"modification\\\": {\\n                    \\\"id\\\": \\\"1WT1N05XXY7P9XGB\\\",\\n                    \\\"type\\\": \\\"return\\\",\\n                    \\\"status\\\": \\\"authorised\\\",\\n                    \\\"direction\\\": \\\"outgoing\\\",\\n                    \\\"reference\\\": \\\"YOUR_REFERENCE_FOR_THE_RETURN\\\"\\n                }\\n            }\\n        ],\\n        \\\"reason\\\": \\\"approved\\\",\\n        \\\"status\\\": \\\"booked\\\",\\n        \\\"balances\\\": [\\n            {\\n                \\\"balance\\\": 1000,\\n                \\\"currency\\\": \\\"EUR\\\",\\n                \\\"received\\\": 0,\\n                \\\"reserved\\\": -1000\\n            }\\n        ],\\n        \\\"category\\\": \\\"internal\\\",\\n        \\\"direction\\\": \\\"incoming\\\",\\n        \\\"reference\\\": \\\"Your reference for the transfer\\\",\\n        \\\"description\\\": \\\"Your description of the transfer\\\",\\n        \\\"categoryData\\\": {\\n            \\\"type\\\": \\\"internal\\\"\\n        },\\n        \\\"counterparty\\\": {\\n            \\\"balanceAccountId\\\": \\\"BA00000000000000000000001\\\"\\n        },\\n        \\\"creationDate\\\": \\\"2024-09-11T11:50:40+02:00\\\",\\n        \\\"accountHolder\\\": {\\n            \\\"id\\\": \\\"AH00000000000000000000002\\\",\\n            \\\"reference\\\": \\\"Your reference for the account holder\\\",\\n            \\\"description\\\": \\\"Your description of the account holder\\\"\\n        },\\n        \\\"balanceAccount\\\": {\\n            \\\"id\\\": \\\"BA00000000000000000000002\\\",\\n            \\\"description\\\": \\\"Your description of the balance account\\\"\\n        },\\n        \\\"sequenceNumber\\\": 5,\\n        \\\"balancePlatform\\\": \\\"YOUR_BALANCE_PLATFORM\\\",\\n        \\\"referenceForBeneficiary\\\": \\\"Your reference for the recipient of the transfer request\\\"\\n    },\\n    \\\"type\\\": \\\"balancePlatform.transfer.updated\\\",\\n    \\\"environment\\\": \\\"test\\\"\\n}\"}]' :enable-copy-link-to-code-block=\"true\" :code-sample-card-size=\"'fullsize'\"><\/code-sample>\n<\/div>\n\n        <\/div>\n    <\/div>\n<\/div>\n\n<div class=\"accordion-shortcode adl-accordion adl-accordion--max-height-transition\" data-expand=\"true\" data-ignore=\"anchorjs-link\">\n    \n    <div class=\"adl-accordion__item\" style=\"border: none !important;\">\n        <div tabindex=\"0\" role=\"item\" aria-expanded=\"false\" class=\"adl-accordion__header\">\n            <i class=\"adl-accordion__toggle adl-icon-chevron-down\"><\/i>\n            <div class=\"adl-accordion__title-wrapper\" data-accordion=\"#3-return-booked\">\n                                    <h4 class=\"adl-accordion__title\">3. Return booked<\/h4>\n                            <\/div>\n        <\/div>\n        <div role=\"region\" class=\"adl-accordion__content\">\n            \n<p>When the return is processed, we send you two  <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, one for each of the balance accounts involved.<\/p>\n\n<div id=\"tabovJjn\">\n    <div data-component-wrapper=\"tabs\">\n        <tabs\n                        :items=\"[{&quot;title&quot;:&quot;Source balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;The webhook has all the details of the original incoming transfer, and an additional &lt;code&gt;event&lt;\\\/code&gt; with the details of the &lt;code&gt;modification&lt;\\\/code&gt;:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;type&lt;\\\/code&gt; &lt;strong&gt;return&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;status&lt;\\\/code&gt;: &lt;strong&gt;booked&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;outgoing&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;reference&lt;\\\/code&gt;: the reference from the return request&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;p&gt;The &lt;code&gt;balances&lt;\\\/code&gt; are now all &lt;strong&gt;0&lt;\\\/strong&gt;.&lt;\\\/p&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Return booked&#039;\\&quot; :id=\\&quot;&#039;return-booked-source&#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;id\\\\\\&quot;: \\\\\\&quot;1WT1N05XXY7P9XGB\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;value\\\\\\&quot;: 1000,\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:50:54+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -1000,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:50:55+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: 1000,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:50:40+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:50:55+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN4227C224222D5JLWTLKDJT4XMTEUR\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000004\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:53:22+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;modification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;1WT1N05XXY7P9XGB\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;return\\\\\\&quot;,\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                    \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;YOUR_REFERENCE_FOR_THE_RETURN\\\\\\&quot;\\\\n                }\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000005\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 1000,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:53:37+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;modification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;1WT1N05XXY7P9XGB\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;return\\\\\\&quot;,\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                    \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;YOUR_REFERENCE_FOR_THE_RETURN\\\\\\&quot;\\\\n                }\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;EVJN00000000000000000000000006\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -1000,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:53:38+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:53:38+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;modification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;1WIZQB5XXY7MHOXH\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;return\\\\\\&quot;,\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                    \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n                    \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;YOUR_REFERENCE_FOR_THE_RETURN\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN4227C224222D5JLWTSDF2K4FTFEUR\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n        \\\\\\&quot;balances\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;balance\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;incoming\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;categoryData\\\\\\&quot;: {\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-09-11T11:50:40+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;,\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the balance account\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 6,\\\\n        \\\\\\&quot;balancePlatform\\\\\\&quot;: \\\\\\&quot;YOUR_BALANCE_PLATFORM\\\\\\&quot;,\\\\n        \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your reference for the recipient of the transfer request\\\\\\&quot;\\\\n    },\\\\n    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;balancePlatform.transfer.updated\\\\\\&quot;,\\\\n    \\\\\\&quot;environment\\\\\\&quot;: \\\\\\&quot;test\\\\\\&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;return-booked-source&quot;,&quot;oldTabId&quot;:&quot;return-booked-source_1&quot;,&quot;relation&quot;:&quot;&quot;},{&quot;title&quot;:&quot;Target balance account&quot;,&quot;content&quot;:&quot;\\n&lt;p&gt;When the returned funds are credited to the balance account that sent the original funds transfer request, we send you a  &lt;a href=\\&quot;https:\\\/\\\/docs.adyen.com\\\/api-explorer\\\/transfer-webhooks\\\/latest\\\/post\\\/balancePlatform.transfer.updated\\&quot; class=\\&quot;codeLabel  external-link no-image\\&quot; target=\\&quot;_blank\\&quot; rel=\\&quot;nofollow noopener noreferrer\\&quot;&gt;balancePlatform.transfer.updated&lt;\\\/a&gt; webhook. The webhook has all the details of the previous outgoing transfer, and an additional &lt;code&gt;event&lt;\\\/code&gt; with the details of the &lt;code&gt;modification&lt;\\\/code&gt;:&lt;\\\/p&gt;\\n&lt;ul&gt;\\n&lt;li&gt;&lt;code&gt;type&lt;\\\/code&gt; &lt;strong&gt;return&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;status&lt;\\\/code&gt;: &lt;strong&gt;booked&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;direction&lt;\\\/code&gt;: &lt;strong&gt;incoming&lt;\\\/strong&gt;&lt;\\\/li&gt;\\n&lt;li&gt;&lt;code&gt;reference&lt;\\\/code&gt;: the reference from the return request.&lt;\\\/li&gt;\\n&lt;\\\/ul&gt;\\n&lt;div data-component-wrapper=\\&quot;code-sample\\&quot;&gt;\\n    &lt;code-sample :title=\\&quot;&#039;Return booked&#039;\\&quot; :id=\\&quot;&#039;return-booked-target&#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;id\\\\\\&quot;: \\\\\\&quot;1WIZQB5XXY7MHOXH\\\\\\&quot;,\\\\n        \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internalTransfer\\\\\\&quot;,\\\\n        \\\\\\&quot;amount\\\\\\&quot;: {\\\\n            \\\\\\&quot;value\\\\\\&quot;: 1000,\\\\n            \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;events\\\\\\&quot;: [\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:19:40+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;GXLP00000000000000000000000001\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: -1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;received\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:19:40+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;GXLP00000000000000000000000002\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 1000,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: -1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;authorised\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:19:40+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;GXLP00000000000000000000000003\\\\\\&quot;,\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: -1000,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                        \\\\\\&quot;reserved\\\\\\&quot;: 1000\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN4227222422375JN7J8643N4HTGEUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:19:35+02:00\\\\\\&quot;\\\\n            },\\\\n            {\\\\n                \\\\\\&quot;bookingDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:21:02+02:00\\\\\\&quot;,\\\\n                \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;GXLP00000000000000000000000004\\\\\\&quot;,\\\\n                \\\\\\&quot;modification\\\\\\&quot;: {\\\\n                    \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;incoming\\\\\\&quot;,\\\\n                    \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&quot;,\\\\n                    \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;return\\\\\\&quot;\\\\n                },\\\\n                \\\\\\&quot;mutations\\\\\\&quot;: [\\\\n                    {\\\\n                        \\\\\\&quot;balance\\\\\\&quot;: 1000,\\\\n                        \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                        \\\\\\&quot;received\\\\\\&quot;: 0\\\\n                    }\\\\n                ],\\\\n                \\\\\\&quot;transactionId\\\\\\&quot;: \\\\\\&quot;EVJN4227C22422375JN7JC49X36C4ZEUR\\\\\\&quot;,\\\\n                \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;accounting\\\\\\&quot;,\\\\n                \\\\\\&quot;valueDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:20:52+02:00\\\\\\&quot;\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;balanceAccount\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of 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;: 0,\\\\n                \\\\\\&quot;currency\\\\\\&quot;: \\\\\\&quot;EUR\\\\\\&quot;,\\\\n                \\\\\\&quot;received\\\\\\&quot;: 0,\\\\n                \\\\\\&quot;reserved\\\\\\&quot;: 0\\\\n            }\\\\n        ],\\\\n        \\\\\\&quot;category\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;,\\\\n        \\\\\\&quot;categoryData\\\\\\&quot;: {\\\\n            \\\\\\&quot;type\\\\\\&quot;: \\\\\\&quot;internal\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;counterparty\\\\\\&quot;: {\\\\n            \\\\\\&quot;balanceAccountId\\\\\\&quot;: \\\\\\&quot;BA00000000000000000000002\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;creationDate\\\\\\&quot;: \\\\\\&quot;2024-09-20T13:19:35+02:00\\\\\\&quot;,\\\\n        \\\\\\&quot;accountHolder\\\\\\&quot;: {\\\\n            \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the account holder\\\\\\&quot;,\\\\n            \\\\\\&quot;id\\\\\\&quot;: \\\\\\&quot;AH00000000000000000000001\\\\\\&quot;\\\\n        },\\\\n        \\\\\\&quot;description\\\\\\&quot;: \\\\\\&quot;Your description of the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;direction\\\\\\&quot;: \\\\\\&quot;outgoing\\\\\\&quot;,\\\\n        \\\\\\&quot;reason\\\\\\&quot;: \\\\\\&quot;approved\\\\\\&quot;,\\\\n        \\\\\\&quot;reference\\\\\\&quot;: \\\\\\&quot;Your reference for the transfer\\\\\\&quot;,\\\\n        \\\\\\&quot;referenceForBeneficiary\\\\\\&quot;: \\\\\\&quot;Your reference for the recipient of the transfer request\\\\\\&quot;,\\\\n        \\\\\\&quot;sequenceNumber\\\\\\&quot;: 4,\\\\n        \\\\\\&quot;status\\\\\\&quot;: \\\\\\&quot;booked\\\\\\&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;return-booked-target&quot;,&quot;oldTabId&quot;:&quot;return-booked-target_2&quot;,&quot;relation&quot;:&quot;&quot;}]\"\n            :should-update-when-url-changes='true'>\n        <\/tabs>\n    <\/div>\n<\/div>\n\n\n        <\/div>\n    <\/div>\n<\/div>\n","url":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service\/internal-fund-transfers\/internal-transfer-webhooks","articleFields":{"description":"Find out which webhooks Adyen sends for internal funds transfers.","feedback_component":true,"type":"page","_expandable":{"operations":""},"cache_enable":false,"parameters":{"directoryPath":"\/payouts\/payout-service","integrationType":"payouts","model":"platform"}},"algolia":{"url":"https:\/\/docs.adyen.com\/pt\/payouts\/payout-service\/internal-fund-transfers\/internal-transfer-webhooks","title":"Webhooks for internal transfers","content":"When you initiate an internal transfer between balance accounts in your platform, Adyen sends two kinds of webhooks:\n\n balancePlatform.transfer.created, which informs your server that funds will be transferred between the balance accounts.\n balancePlatform.transfer.updated, which informs your server of changes in the status of the transfer.\n\nFor each event you receive two sets webhooks:\n\nWebhooks for the source balance account where you initiate the transfer as an outgoing request.\nWebhooks for the target balance account, where you receive the transfer as an incoming request.\n\nTo keep track of events related to internal transfers in your platform, make sure that:\n\nYour server can receive and accept webhooks.\nYou subscribed to the Transfer webhooks in your test Customer Area.\n\nInternal funds transfer\nYou can identify transfer webhooks triggered by internal funds transfers by the following values:\n\n\n\nParameter\nDescription\nValue\n\n\n\n\n category\nThe category of the transfer.\ninternal\n\n\n direction\nThe direction of the transfer request.\noutgoing for the source balance account incoming for the target balance account\n\n\n type\nThe type of internal transfer.\ninternalTransfer\n\n\n\nFor an internal sweep or on-demand transfer, you receive webhooks for the following events:\n\nThe transfer is initiated.\nThe transfer is authorized. This indicates that the funds are reserved.\nThe transfer is booked.\n\nYou receive these webhooks for each of the balance accounts involved in the transfer.\nThe following is an example for an internal transfer request:\n\n    \n\nExpand the sections below to see the webhooks you would receive for the example transfer request.\n\n    \n    \n        \n            \n            \n                                    1. Internal transfer initiated\n                            \n        \n        \n            \nWhen a scheduled or on-demand internal transfer is triggered, we send  balancePlatform.transfer.created webhooks with status received, to inform your server that funds will be transferred between balance accounts in your platform.\n\n\n    \n        \n        \n    \n\n\n\n        \n    \n\n\n\n    \n    \n        \n            \n            \n                                    2. Internal transfer authorized\n                            \n        \n        \n            \nWhen the scheduled or on-demand internal push transfer is authorized, we send  balancePlatform.transfer.updated webhooks with status authorised, to inform your server that the funds have been reserved on the source and target balance accounts.\n\n\n    \n        \n        \n    \n\n\n\n        \n    \n\n\n\n    \n    \n        \n            \n            \n                                    3. Internal transfer booked\n                            \n        \n        \n            \nWhen the scheduled or on-demand internal push transfer is booked, we send  balancePlatform.transfer.updated webhooks with status booked, to inform your server that the funds have been pushed from the source balance account to the target balance account.\n\n\n    \n        \n        \n    \n\n\n\n        \n    \n\n\nReturned internal transfer\nIf needed, you can return the funds to the source balance account.\nThe following is an example for an internal return request.\n\n    \n\nExpand the sections below to see the webhooks you would receive for the example return request. The webhooks show that the return is handled as a modification of the original transfer.\n\n    \n    \n        \n            \n            \n                                    1. Return initiated\n                            \n        \n        \n            \nWhen a return is initiated, we send a  balancePlatform.transfer.updated webhook to inform your server that funds will be returned to the source balance account. The webhook has all the details of the original incoming transfer, and an additional event that includes the modification details:\n\ntype return\nstatus: received\ndirection: outgoing\nreference: the reference from the return request\n\nThis shows that the incoming funds in the original transfer are now outgoing.\n\n    \n\n\n        \n    \n\n\n\n    \n    \n        \n            \n            \n                                    2. Return authorized\n                            \n        \n        \n            \nWhen the return is authorized, we send a  balancePlatform.transfer.updated webhook to inform your server that the return amount has been reserved. The webhook has all the details of the previous incoming transfer, and an additional event with the details of the modification:\n\ntype return\nstatus: authorised\ndirection: outgoing\nreference: the reference from the return request\n\n\n    \n\n\n        \n    \n\n\n\n    \n    \n        \n            \n            \n                                    3. Return booked\n                            \n        \n        \n            \nWhen the return is processed, we send you two  balancePlatform.transfer.updated webhooks, one for each of the balance accounts involved.\n\n\n    \n        \n        \n    \n\n\n\n        \n    \n\n","type":"page","locale":"pt","boost":16,"hierarchy":{"lvl0":"Home","lvl1":"Adyen Payouts","lvl2":"Payouts and Payments","lvl3":"Transfer funds internally","lvl4":"Webhooks for internal transfers"},"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\/internal-fund-transfers","lvl4":"\/pt\/payouts\/payout-service\/internal-fund-transfers\/internal-transfer-webhooks"},"levels":5,"category":"","category_color":"","tags":["Webhooks","internal","transfers"]}}
