> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.hopnow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable Payment Destination

> Disable a payment destination so no future payments can be sent to it

Disables a payment destination so that no future payments can be sent to it. Takes the path `id` with an empty body.

## Path Parameters

<ParamField path="account_id" type="string" required>
  Id of the parent account (e.g. `acct_...`).
</ParamField>

<ParamField path="beneficiary_id" type="string" required>
  Id of the parent beneficiary (e.g. `bene_...`).
</ParamField>

<ParamField path="id" type="string" required>
  Destination id (e.g. `dest_…`).
</ParamField>

## Response

Returns the `payment_destination` object with `status` = `disabled`.

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "payment_destination",
    "id": "dest_8kpw2x7a3b9c1e5f2d4g6h8j",
    "beneficiary_id": "bene_5tql9z7a3b9c1e5f2d4g6h8j",
    "country": "GB",
    "type": "bank_account",
    "currency": "GBP",
    "status": "disabled",
    "account_number_last4": "****6819",
    "iban_masked": "GB29****6819",
    "is_default": false,
    "created": "2026-05-01T10:05:00Z",
    "updated": "2026-05-15T11:20:00Z",
    "created_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4",
    "updated_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4"
  }
  ```
</ResponseExample>
