Disable Beneficiary
curl --request POST \
--url https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"object": "beneficiary",
"id": "bene_9f2c1d7e8a4bx0y1z2a3b4c5",
"account_id": "acct_4d8e2a1b9c3fx0y1z2a3b4c5",
"beneficiary_type": "business",
"display_name": "Globex UK",
"company_name": "Globex Limited",
"country_code": "GB",
"status": "disabled",
"verified": true,
"payment_destinations": [],
"created": "2026-06-10T09:15:00Z",
"updated": "2026-06-12T14:05:00Z",
"created_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4",
"updated_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4"
}
Beneficiaries
Disable Beneficiary
Disable a beneficiary so no future payments can be sent to it
POST
/
ads
/
v1
/
accounts
/
{account_id}
/
beneficiaries
/
{id}
/
disable
Disable Beneficiary
curl --request POST \
--url https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable"
headers = {"X-API-Key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hopnow.io/ads/v1/accounts/{account_id}/beneficiaries/{id}/disable")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"object": "beneficiary",
"id": "bene_9f2c1d7e8a4bx0y1z2a3b4c5",
"account_id": "acct_4d8e2a1b9c3fx0y1z2a3b4c5",
"beneficiary_type": "business",
"display_name": "Globex UK",
"company_name": "Globex Limited",
"country_code": "GB",
"status": "disabled",
"verified": true,
"payment_destinations": [],
"created": "2026-06-10T09:15:00Z",
"updated": "2026-06-12T14:05:00Z",
"created_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4",
"updated_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4"
}
Disables a beneficiary. No future payments are allowed to a disabled beneficiary, but it remains visible in listings. The request takes the path
id with an empty body.
Disable is the way to retire a beneficiary — there is no hard delete on this API.
Path Parameters
string
required
Id of the parent account (e.g.
acct_...).string
required
Beneficiary id (e.g.
bene_...).Response
Returns 200 with the beneficiary object, wherestatus is disabled.
{
"object": "beneficiary",
"id": "bene_9f2c1d7e8a4bx0y1z2a3b4c5",
"account_id": "acct_4d8e2a1b9c3fx0y1z2a3b4c5",
"beneficiary_type": "business",
"display_name": "Globex UK",
"company_name": "Globex Limited",
"country_code": "GB",
"status": "disabled",
"verified": true,
"payment_destinations": [],
"created": "2026-06-10T09:15:00Z",
"updated": "2026-06-12T14:05:00Z",
"created_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4",
"updated_by": "ak_x7k2m9p4q1w8e5r3t6y0u2i4"
}
⌘I