---
title: "Transfer Request Updated Webhook"
source_url: https://docs.rapyd.net/en/transfer-request-updated-webhook.html
lang: en
---

# Transfer Request Updated Webhook

The **TRANSFER_REQUEST_UPDATED** webhook notifies the client of the new status of a transfer request after a Rapyd Protect review.

> **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

- - amount
  - Amount of the transaction, in units of the currency defined in `currency`.
- - currency
  - Three-letter ISO 4217 code for the currency used in the `amount` field.
- - destination_ewallet_id
  - ID of the wallet receiving the money. String starting with **ewallet_**.
- - destination_phone_number
  - Phone number of the owner of the wallet receiving the money, in E.164 format.
- - destination_transaction_id
  - ID of the transaction with regard to the destination. String starting with **wt_**.
- - id
  - ID of the transaction. UUID.
- - source_ewallet_id
  - ID of the wallet sending the money. String starting with **ewallet_**.
- - source_phone_number
  - Phone number of the owner of the wallet sending the money, in E.164 format.
- - source_transaction_id
  - ID of the transaction with regard to the source. String starting with **wt_**.
- - timestamp
  - Time of the operation, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").
- - status
  - Status of the transfer.

    - **PEN** - Pending. Waiting for the transferee to accept.
    - **REJ** - Rejected. [Rapyd Protect](https://docs.rapyd.net/en/rapyd-protect.md "Rapyd Protect") rejected the transfer.

- TRANSFER_REQUEST_UPDATED Webhook
- ```json
  {
      "id": "wh_607c4349d3fa7e59b46b1ee61f6b8d55",
      "data": {
          "id": "faa02329-c2b7-4e7d-90cb-8d7d59364265",
          "amount": "2.00",
          "status": "PEN",
          "currency": "EUR",
          "timestamp": "1701318000",
          "source_ewallet_id": "ewallet_6c5108b46aa1c1009fc11d20647aa336",
          "source_phone_number": "+12123068197",
          "source_transaction_id": "wt_e09af9a25601a5354576d7d47fe6d7af",
          "destination_ewallet_id": "ewallet_69d0e1bdfc34d2f2939e19384892dd62",
          "destination_phone_number": "+821169729193",
          "destination_transaction_id": null
      },
      "type": "TRANSFER_REQUEST_UPDATED",
      "status": "NEW",
      "created_at": 1701228107,
      "extended_timestamp": 1701228107820,
      "trigger_operation_id": "c75d0ffe-64f2-4210-8a66-1452126265ea"
  }
  ```
