Skip to main content
PATCH
/
api
/
v1
/
agents
/
{uuid}
/
voice-profile
Update voice profile
curl --request PATCH \
  --url https://{subdomain}.mihu.ai/api/v1/agents/{uuid}/voice-profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "language": "en",
  "voice_uuid": "16a8b0dd-3a15-4e39-8cc0-384196da952b"
}
'
{
  "success": true,
  "message": "Voice profile updated successfully",
  "data": {
    "language": "en",
    "voice_uuid": "16a8b0dd-3a15-4e39-8cc0-384196da952b",
    "voice_name": "Elegant Narrator"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mihu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uuid
string<uuid>
required

Body

application/json

The body is of type any.

Response

Voice profile updated