---
title: "Funds Added Webhook"
source_url: https://docs.rapyd.net/en/funds-added-webhook.html
lang: en
---

# Funds Added Webhook

The **EWALLET_ADDED_FUNDS** webhook notifies the client that funds were successfully added to a Rapyd Wallet.

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

- - accounts
  - List of the currency accounts within the Rapyd wallet.

    - - alias
      - Alternate text description of the currency.
    - - balance
      - Available funds in the account.
    - - currency
      - Three-letter ISO 4217 code for the currency used in the `balance` field.
    - - id
      - ID of the account. UUID.
    - - limit
      - Reserved.
    - - limits
      - Reserved.
    - - on_hold_balance
      - Amount in the on-hold balance of the account.
    - - received_balance
      - Amount of escrow funds in the account.
    - - reserve_balance
      - Amount in the reserve balance of the account.
- - category
  - Category of payment method or payout method. One of the following values:

    - **bank** - Bank transfer or bank redirect.
    - **card** - Card.
    - **cash** - Cash.
    - **ewallet** - Local eWallet.
- - contacts
  - List of contacts in the Rapyd wallet.
- - email
  - Email associated with the Rapyd wallet. Deprecated.
- - ewallet_reference_id
  - Wallet ID defined by the customer or end user.
- - first_name
  - First name of the wallet owner.
- - id
  - The ID of the Rapyd wallet. String starting with **ewallet_**.
- - last_name
  - Last name of the wallet owner.
- - last_transaction_amount
  - Amount of the last transaction, in units defined by `last_transaction_currency`.
- - last_transaction_currency
  - Currency of the last transaction. Three-letter ISO 4217 code.
- - metadata
  - A JSON object defined by the client. See [Metadata](https://docs.rapyd.net/en/metadata.md "Metadata").
- - phone_number
  - Phone number associated with the Rapyd wallet. Deprecated.
- - status
  - Status of the Rapyd wallet. One of the following:

    - **ACT** - Active.
    - **DIS** - Disabled.
- - type
  - Type of Rapyd wallet. One of the following:

    - **client**
    - **person**
    - **company**
- - verification_status
  - Result of the verification check. One of the following:

    - **not verified** - The contact has not been submitted for the **Know Your Customer** checks.
    - **KYCd** - The user has passed the **Know Your Customer** checks.

- EWALLET_ADDED_FUNDS Webhook
- ```json
  {
      "id": "wh_c1479669b28bccbaf851e3ae14d1185b",
      "data": {
          "id": "ewallet_c9cd5989ee46631f01ab1f8bfa2e5375",
          "type": "company",
          "email": null,
          "status": "ACT",
          "accounts": [{
                  "id": "3a7091fc-f0fd-11ea-bbd7-02c4887b9dab",
                  "alias": "MXN",
                  "limit": null,
                  "limits": null,
                  "balance": 4985,
                  "currency": "MXN",
                  "on_hold_balance": 0,
                  "reserve_balance": 0,
                  "received_balance": 0
              }
          ],
          "category": null,
          "contacts": null,
          "metadata": {
              "merchant_defined": true
          },
          "last_name": "",
          "first_name": "Four Star Professional Services",
          "phone_number": null,
          "verification_status": "not verified",
          "ewallet_reference_id": "e-7757",
          "last_transaction_amount": 5000,
          "last_transaction_currency": "MXN"
      },
      "type": "EWALLET_ADDED_FUNDS",
      "status": "NEW",
      "created_at": 1599638133,
      "extended_timestamp": 1599638133394,
      "trigger_operation_id": "2374772f-4bfd-4d3c-8b59-2f8284bd582a"
  }
  ```
