Skip to main content
DELETE
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
beneficiaries
/
{beneficiary_id}
/
payout-destinations
/
{destination_id}
Delete Payout Destination
curl --request DELETE \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/beneficiaries/{beneficiary_id}/payout-destinations/{destination_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
beneficiary_id
string
required
The beneficiary’s external ID (starts with ben_)
destination_id
string
required
The payout destination’s external ID (starts with dest_)

Response

id
string
The payout destination identifier that was deactivated
object
string
Always returns "payout_destination"
deleted
boolean
Always returns true

Response Example

{
  "id": "dest_1234567890abcdef",
  "object": "payout_destination",
  "deleted": true
}