--- title: "Payment webhooks (deprecated)" description: "Find out which webhooks Adyen sends for fund transfers." url: "https://docs.adyen.com/marketplaces/internal-fund-transfers/notification-webhooks" source_url: "https://docs.adyen.com/marketplaces/internal-fund-transfers/notification-webhooks.md" canonical: "https://docs.adyen.com/marketplaces/internal-fund-transfers/notification-webhooks" last_modified: "2021-07-15T16:18:00+02:00" language: "en" --- # Payment webhooks (deprecated) Find out which webhooks Adyen sends for fund transfers. [View source](/marketplaces/internal-fund-transfers/notification-webhooks.md) ##### More webhooks Learn about the [webhook types](/marketplaces/webhook-types) that Adyen sends to your server. The webhooks described in this section are deprecated. Use the [transfer webhooks](/marketplaces/internal-fund-transfers/internal-transfer-webhooks) instead. When you initiate a funds transfer between balance accounts, Adyen sends two sets of webhooks: one for the source and one for the destination balance account. ## Source balance account Adyen sends a [balancePlatform.outgoingTransfer.created](https://docs.adyen.com/api-explorer/#/balanceplatform-webhooks/latest/post/balancePlatform.outgoingTransfer.created) webhook for the `source` balance account. The `amount.value` shows a *negative* amount, indicating funds deducted from the balance account. **Outgoing funds transfer from source balance account** ```json { "data": { "balancePlatform": "YOUR_BALANCE_PLATFORM", "creationDate": "2021-09-02T18:35:55+02:00", "id": "1W3ZLV5S2VIMM72A", "accountHolder": { "description": "S.Hopper", "id": "AH00000000000000000000001" }, "amount": { "currency": "EUR", "value": -10000 }, "balanceAccount": { "description": "My Balance Account", "id": "BA00000000000000000000001" }, "counterparty": { "balanceAccountId": "BA00000000000000000000002" }, "description": "YOUR_DESCRIPTION_FOR_THE_TRANSFER", "modification": { "amount": { "currency": "EUR", "value": -10000 }, "type": "OutgoingTransfer" }, "originalAmount": { "currency": "EUR", "value": -1000 }, "paymentId": "1W3ZLV5S2VIMM72A", "reference": "YOUR_UNIQUE_REFERENCE_FOR_THE_TRANSFER", "status": "OutgoingTransfer", "valueDate": "2021-09-02T18:35:43+02:00" }, "environment": "test", "type": "balancePlatform.outgoingTransfer.created" } ``` ## Destination balance account Adyen sends a [balancePlatform.incomingTransfer.created](https://docs.adyen.com/api-explorer/#/balanceplatform-webhooks/latest/post/balancePlatform.incomingTransfer.created) webhook for the `destination` account. The `amount.value` shows a *positive* amount, indicating funds added to the balance account. **Incoming funds transfer to destination balance account** ```json { "data": { "balancePlatform": "YOUR_BALANCE_PLATFORM", "creationDate": "2021-05-03T15:20:14+02:00", "id": "IZL6685QQEBKFOOY", "accountHolder": { "description": "S.Hopper", "id": "AH00000000000000000000001" }, "amount": { "currency": "EUR", "value": 15000 }, "balanceAccount": { "description": "S.Hopper - Main account", "id": "BA00000000000000000000002" }, "modification": { "amount": { "currency": "EUR", "value": 15000 }, "type": "PendingIncomingTransfer" }, "originalAmount": { "currency": "EUR", "value": 15000 }, "paymentId": "IZL6685QQEBKFON0", "status": "PendingIncomingTransfer" }, "environment": "test", "type": "balancePlatform.incomingTransfer.created" } ```