cURL
curl --request DELETE \
--url https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link \
--header 'Authorization: Bearer YOUR_API_KEY'import requests
url = "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link', 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.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"subAccount": {
"locationId": "rrHDPw5RIR5ULeUlfSAR",
"name": "Bright Dental",
"isLive": true,
"rebilling": {
"enabled": true,
"clientRatePerMinute": 0.45
},
"wallet": {
"balanceMinutes": 64.5,
"balanceUSD": 29.03,
"debtMinutes": 0,
"status": "LOW_BALANCE",
"visibility": "ENABLED"
},
"autoRecharge": {
"enabled": true,
"thresholdUSD": 25,
"rechargeAmountUSD": 100,
"blockedReason": null,
"requiresAction": false,
"recommendedAction": null,
"lastSuccessfulRechargeAt": "2026-09-10T09:30:00.000Z",
"lastFailureAt": null
},
"creditGuard": {
"enabled": false
},
"pendingCredits": {
"count": 0,
"minutes": 0,
"amountUSD": 0,
"items": []
},
"creditBatches": [
{
"id": "BKT-51c0",
"purchasedAt": "2026-09-10T09:30:00.000Z",
"minutesPurchased": 200,
"minutesRemaining": 64.5,
"valueRemainingUSD": 29.03,
"ratePerMinute": 0.45,
"isBonus": false,
"expiresAt": null,
"isExpired": false
}
]
}
}
}{
"success": false,
"error": "BadRequest",
"message": "body: Invalid input: expected boolean, received undefined"
}{
"success": false,
"error": "Unauthorized"
}{
"success": false,
"error": "InsufficientScope",
"message": "This API key does not have the required scope.",
"requiredScope": "billing:write"
}{
"success": false,
"error": "NotFound",
"message": "No connected sub-account with that locationId belongs to this agency."
}{
"success": false,
"error": "AUTO_RECHARGE_CARD_REQUIRED",
"message": "Turn off auto-recharge before disconnecting this Stripe customer."
}{
"success": false,
"error": "TooManyRequests"
}{
"success": false,
"error": "InternalError",
"message": "Could not load the rebilling change."
}{
"success": false,
"error": "PAYMENT_METHOD_PROVIDER_UNAVAILABLE",
"message": "Stripe could not verify your billing card. Nothing was charged; try again."
}Unlink a Stripe customer
Unlink the sub-account’s Stripe customer. Nothing is deleted in Stripe: linking the customer again brings its cards back. Refused while the sub-account’s auto-recharge is on.
Needs a plan that includes rebilling, and Stripe Connect connected for the agency, even when turning something off. Without either the call changes nothing and answers CAPABILITY_NOT_AVAILABLE (403) or STRIPE_NOT_CONNECTED (409).
Allowed customer roles: agency_admin. The agency is the one the credential belongs to.
Required API key scope: billing:write.
DELETE
/
api
/
billing
/
sub-accounts
/
{locationId}
/
customer-link
cURL
curl --request DELETE \
--url https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link \
--header 'Authorization: Bearer YOUR_API_KEY'import requests
url = "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link', 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.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/customer-link")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"subAccount": {
"locationId": "rrHDPw5RIR5ULeUlfSAR",
"name": "Bright Dental",
"isLive": true,
"rebilling": {
"enabled": true,
"clientRatePerMinute": 0.45
},
"wallet": {
"balanceMinutes": 64.5,
"balanceUSD": 29.03,
"debtMinutes": 0,
"status": "LOW_BALANCE",
"visibility": "ENABLED"
},
"autoRecharge": {
"enabled": true,
"thresholdUSD": 25,
"rechargeAmountUSD": 100,
"blockedReason": null,
"requiresAction": false,
"recommendedAction": null,
"lastSuccessfulRechargeAt": "2026-09-10T09:30:00.000Z",
"lastFailureAt": null
},
"creditGuard": {
"enabled": false
},
"pendingCredits": {
"count": 0,
"minutes": 0,
"amountUSD": 0,
"items": []
},
"creditBatches": [
{
"id": "BKT-51c0",
"purchasedAt": "2026-09-10T09:30:00.000Z",
"minutesPurchased": 200,
"minutesRemaining": 64.5,
"valueRemainingUSD": 29.03,
"ratePerMinute": 0.45,
"isBonus": false,
"expiresAt": null,
"isExpired": false
}
]
}
}
}{
"success": false,
"error": "BadRequest",
"message": "body: Invalid input: expected boolean, received undefined"
}{
"success": false,
"error": "Unauthorized"
}{
"success": false,
"error": "InsufficientScope",
"message": "This API key does not have the required scope.",
"requiredScope": "billing:write"
}{
"success": false,
"error": "NotFound",
"message": "No connected sub-account with that locationId belongs to this agency."
}{
"success": false,
"error": "AUTO_RECHARGE_CARD_REQUIRED",
"message": "Turn off auto-recharge before disconnecting this Stripe customer."
}{
"success": false,
"error": "TooManyRequests"
}{
"success": false,
"error": "InternalError",
"message": "Could not load the rebilling change."
}{
"success": false,
"error": "PAYMENT_METHOD_PROVIDER_UNAVAILABLE",
"message": "Stripe could not verify your billing card. Nothing was charged; try again."
}Authorizations
Send your API key as Authorization: Bearer YOUR_API_KEY.
Headers
Optional. A retry with the same key returns the first answer with idempotentReplay: true.
Required string length:
8 - 255Path Parameters
The sub-account's GoHighLevel Location ID.
Minimum string length:
1⌘I
