cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true
}'import requests
url = "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard"
payload = { "enabled": True }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({enabled: true})
};
fetch('https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard', 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}/credit-guard",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard"
payload := strings.NewReader("{\n \"enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"enabled\": true\n}"
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": "SUB_ACCOUNT_WALLET_REQUIRED",
"message": "This sub-account has no wallet yet. Turn rebilling on first."
}{
"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."
}Update sub-account Credit Guard
Whether this sub-account stops its own calls when its wallet is empty. The sub-account needs a wallet, which turning rebilling on creates.
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.
PUT
/
api
/
billing
/
sub-accounts
/
{locationId}
/
credit-guard
cURL
curl --request PUT \
--url https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"enabled": true
}'import requests
url = "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard"
payload = { "enabled": True }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({enabled: true})
};
fetch('https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard', 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}/credit-guard",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'enabled' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard"
payload := strings.NewReader("{\n \"enabled\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"enabled\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.teamfollowup.ai/api/billing/sub-accounts/{locationId}/credit-guard")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"enabled\": true\n}"
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": "SUB_ACCOUNT_WALLET_REQUIRED",
"message": "This sub-account has no wallet yet. Turn rebilling on first."
}{
"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:
1Body
application/json
The setting.
On or off.
⌘I
