---
title: "Transfer Funds Between Wallets Response Webhook"
source_url: https://docs.rapyd.net/en/transfer-funds-between-wallets-response-webhook.html
lang: en
---

# Transfer Funds Between Wallets Response Webhook

The **TRANSFER_FUNDS_BETWEEN_EWALLETS_RESPONSE** webhook is sent when the recipient responds to the transfer request, or when the sender cancels it.

> **Note:**
>
> The endpoint for webhooks is unique for each client. To set up a webhook endpoint, see [Defining a Webhook Endpoint](https://docs.rapyd.net/en/defining-a-webhook-endpoint.md "Defining a Webhook Endpoint").

### Parameters

### Webhook Header Parameters

- - Content-Type
  - Indicates that the data appears in JSON format. Set to **application/json**.
- - salt
  - Random string.
- - signature
  - Signature calculated for each webhook individually.

    See [Webhook Authentication](https://docs.rapyd.net/en/webhook-authentication.md "Webhook Authentication").
- - timestamp
  - Timestamp for the webhook, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time") (seconds).

### Webhook Root Parameters

- - created_at
  - Time that the webhook was created, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").

    > **Note:**
    >
    > Inside the `data` object, some webhooks have another `created_at` field that refers to a different event.
- - data
  - Contains the actual data of the webhook.

    For details, see below.
- - extended_timestamp
  - Time in milliseconds that the webhook was created, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").
- - id
  - ID of the webhook. String starting with **wh_**.
- - status
  - Status of the webhook. One of the following:

    - **NEW**
    - **CLO** - Closed.
    - **ERR** - Error.
    - **RET** - Re-sent.

    > **Note:**
    >
    > Inside the `data` object, some webhooks have another `status` field that refers to a different event.
- - trigger_operation_id
  - ID of the operation that triggered the webhook. UUID.
- - type
  - Name of the webhook type.

    > **Note:**
    >
    > The name in the Client Portal is different.

### Webhook Data Parameters

- - destination_ewallet_id
  - ID of the wallet receiving the money. String starting with **ewallet_**.
- - destination_transaction_id
  - ID of the transaction with regard to the destination. String starting with **wt_**.
- - id
  - ID of the transaction. UUID.
- - metadata
  - A JSON object defined by the client. See [Metadata](https://docs.rapyd.net/en/metadata.md "Metadata").
- - response_metadata
  - Metadata created with [Set Transfer Response](https://docs.rapyd.net/en/set-transfer-response.md "Set Transfer Response").
- - source_ewallet_id
  - ID of the wallet sending the money. String starting with **ewallet_**.
- - source_transaction_id
  - ID of the transaction with regard to the source. String starting with **wt_**.
- - status
  - Status of the transaction.

    - **accept** - The transferee accepted the transfer.
    - **decline** - The transferee declined the transfer.
    - **cancel** - The transferor canceled the transfer.
- - timestamp
  - Time the response was made, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").

- TRANSFER_FUNDS_BETWEEN_EWALLETS_RESPONSE Webhook
- ```json
  {
      "id": "wh_d8a792991aa87e4cb50581a4a7857039",
      "data": {
          "id": "7d4b5e36-f107-11ea-bbd7-02c4887b9dab",
          "status": "accept",
          "metadata": {
              "merchant_defined": true
          },
          "timestamp": "1599482575",
          "response_metadata": {
              "merchant_defined": "accepted"
          },
          "source_ewallet_id": "ewallet_c9cd5989ee46631f01ab1f8bfa2e5375",
          "source_transaction_id": "wt_c4b80263e27c01136571ab9eda9c6a46",
          "destination_ewallet_id": "ewallet_fe365c14c51848c08570fa9c97471f32",
          "destination_transaction_id": "wt_ca1ae578aca8beb52cf920ebe09f1b2e"
      },
      "type": "TRANSFER_FUNDS_BETWEEN_EWALLETS_RESPONSE",
      "status": "NEW",
      "created_at": 1599482575,
      "extended_timestamp": 1599482575945,
      "trigger_operation_id": "06092f4a-ad26-42a6-8d4d-72bcd4869ff6"
  }
  ```
