---
title: "Quarantine Release Failed Webhook"
source_url: https://docs.rapyd.net/en/quarantine-release-failed-webhook.html
lang: en
---

# Quarantine Release Failed Webhook

The **QUARANTINE_RELEASED_FAILED** webhook is sent when Rapyd fails to release a transaction that is in quarantine.

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

- - action_flow_id
  - ID of the action flow. UUID.
- - action_type
  - The action that triggered the quarantine. One of the following:

    - **bank_account_issuing_transfer**
    - **create_bank_account**
    - **create_ewallet**
    - **create_ewallet_contact**
    - **create_payment**
    - **create_payout**
    - **ewallet_transfer_funds**
    - **identity_verification**
    - **personalize_issued_card**
    - **transfer_funds_between_ewallets**
    - **update_contact_compliance_profile**
    - **update_ewallet**
    - **update_ewallet_contact**
- - created_at
  - Time of creation of the quarantine, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").
- - duplicated_action_flow_id
  - ID of the duplicate action flow. Relevant to payouts.
- - error_code
  - Error code that is linked to the quarantine.
- - limits
  - Describes the limit that the action breached. Contains the following fields:

    - - breach_value
      - The value of the measured bucket if the transaction is approved.
    - - compliance_profile
      - The compliance level of the wallet.
    - - limit_name
      - Name of the limit.
    - - limit_value
      - Value of the limit.
    - - wallet_token
      - ID of the wallet relevant to the transaction. String starting with **ewallet_**. Limits and the compliance level are set for this wallet. Relevant when `reason` is set to **limits**.
- - reason
  - The reason that the transaction is placed in quarantine:

    - **compliance** - Compliance issues.
    - **limits** - Breached limit.
    - **rapyd_protect** - Rapyd Protect issues.
- - resolved_at
  - Time the quarantine was resolved, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time"). Value is **0** when not resolved.
- - source
  - The Rapyd service that quarantined the action:

    - **compliance**
    - **rapyd_protect**
- - status
  - Status of the quarantine:

    - **HLD** - Quarantine under review.
    - **DEC** - Quarantine release declined.
    - **REL** - Quarantine released.
    - **REF** - Quarantine release failed.
- - target_tokens
  - ID of the relevant payout. One element of a string array, starting with **payout_**.
- - token
  - ID of the quarantine. String starting with **qm_**.
- - updated_at
  - Time the quarantine was last updated, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time").

- QUARANTINE_RELEASED_FAILED
- ```json
  {
      "id": "wh_17cca391b96485d75c886f012387b55d",
      "data":
      {
          "token": "qm_04562730d022c29105e184173eb544e0",
          "target_tokens": [
              "payout_71987d8e65a4e7a68a5ea000e1984a24"
          ],
          "source": "rapyd_protect",
          "status": "REF",
          "created_at": 1639620978,
          "error_code": null,
          "updated_at": 1639620978,
          "action_type": "create_payout",
          "resolved_at": 1639620988,
          "action_flow_id": "a542a0f1-bf41-4e0b-8e0f-e73b7ea72051",
          "duplicated_action_flow_id": null
      },
      "type": "QUARANTINE_RELEASED_FAILED",
      "status": "NEW",
      "created_at": 1639620988,
      "extended_timestamp": 1639620988383,
      "trigger_operation_id": "eb171b9e-2a82-46cf-b0b2-02f708b536eb"
  }
  ```
