Disable one voice
Remove a single voice from the set donors can pick from. The last enabled voice can’t be disabled - turn the whole feature off with POST /ai-voices/disable instead. Requires ai_voices:manage. Closed beta: answers 404 unless AI voices are enabled for your account.
POST
/ai-voices/{voiceId}/disableAuthorization
AuthorizationBearer token (tp_live_...) · headerrequiredA TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
voiceIdstringrequiredThe voice's `id` slug from `GET /ai-voices`.
Responses
200The voice is disabled.
successbooleanidstringenabledbooleanenabled_voicesintegerHow many voices are enabled after this change.
400This is the last enabled voice.
errorstringcodestring401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring404No such resource.
errorstringrequiredHuman-readable message.
codestringMachine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstringRequest
curl -X POST "https://api.tippage.com/v1/ai-voices/string/disable" \
-H "Authorization: Bearer YOUR_TOKEN"const response = await fetch("https://api.tippage.com/v1/ai-voices/string/disable", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
}
});import requests
response = requests.post(
"https://api.tippage.com/v1/ai-voices/string/disable",
headers={
"Authorization": "Bearer YOUR_TOKEN"
},
)Response
{
"success": true,
"id": "string",
"enabled": false,
"enabled_voices": 0
}{
"error": "string",
"code": "last_voice"
}{
"error": "string",
"code": "string"
}{
"error": "string",
"code": "string",
"required_scope": "string"
}{
"error": "string",
"code": "string"
}{
"error": "string"
}