Skip to content

voice_profile_not_approved

An agent draft tried to pin a cloned voice whose consent review has not approved it. Self-serve upload makes pending profiles common; without this gate the failure would surface as the runtime's unknown_voice refusal at dial time. Pick a stock voice until the review completes.

Problem shape

Every non-2xx response is an RFC 9457 application/problem+json body. The type URI below is stable and machine-matchable, so branch on the final path segment (the code) and treat the status as redundant confirmation. See the error-handling guide.

{
  "type": "https://docs.vocapable.com/errors/voice_profile_not_approved",
  "title": "…",
  "status": 409,
  "detail": "…",
  "instance": "/v1/…"
}

← Back to the error registry