Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

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}/disable
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Path parameters
voiceIdstringrequired
The voice's `id` slug from `GET /ai-voices`.
Responses
200The voice is disabled.
successboolean
idstring
enabledboolean
enabled_voicesinteger
How many voices are enabled after this change.
400This is the last enabled voice.
errorstring
codestring
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
404No such resource.
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X POST "https://api.tippage.com/v1/ai-voices/string/disable" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "success": true,
  "id": "string",
  "enabled": false,
  "enabled_voices": 0
}