Release Notes
- What's new
- Known issues
- Troubleshooting
- License reference
Get Started
Environments
Connections
Tools
Large Language Models (LLMs)
Evaluation Framework
Webchats
Tutorials
API's reference
- watsonx Orchestrate Developer Edition APIs
- Orchestrate Agent
- Assistants Runs
- Custom Assistants
- watsonx Assistant
- External Chat Agents
- Message Threads
- Documents
- Vector Index
- Catalog Management
- Tenant Management
- Provisioning Lite
- Embed settings
- User Profiles
- Completions
- Background Tasks
- Auth
- Orchestrate Assistant
- Notifications
- IBM unique ID mapping
- Prompts
- Artifact Management
- Default Agent Settings
- all journey types
- Connections
- Tools
- Welcome Content
- LLM Analytics
- Internal Calls are listed over here
- Agents
- Agent Releases
- Agent Release Environments
- Agent Chat Starter Settings
- API Reference
- channel integration
- Knowledge-Bases
- Chat with Docs
- Toolkits
- Voice Configurations
- Models
- Model-Policy
- Credentials
- Teams Channel
- Twilio WhatsApp Channel
Legal notices
Voice Configurations
List Voice Configurations
GET
/
voice_configurations
Copy
Ask AI
curl --request GET \
--url http://localhost/api/v1/voice_configurations \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"voice_configurations": [
{
"name": "<string>",
"speech_to_text": {
"provider": "<string>",
"watson_stt_config": {
"api_url": "<string>",
"api_key": "<string>",
"model": "<string>"
}
},
"text_to_speech": {
"provider": "<string>",
"watson_tts_config": {
"api_url": "<string>",
"api_key": "<string>",
"voice": "<string>",
"rate_percentage": 123,
"pitch_percentage": 123,
"language": "<string>"
}
},
"voice_configuration_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tenant_id": "<string>",
"attached_agents": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"display_name": "<string>"
}
]
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Query Parameters
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url http://localhost/api/v1/voice_configurations \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"voice_configurations": [
{
"name": "<string>",
"speech_to_text": {
"provider": "<string>",
"watson_stt_config": {
"api_url": "<string>",
"api_key": "<string>",
"model": "<string>"
}
},
"text_to_speech": {
"provider": "<string>",
"watson_tts_config": {
"api_url": "<string>",
"api_key": "<string>",
"voice": "<string>",
"rate_percentage": 123,
"pitch_percentage": 123,
"language": "<string>"
}
},
"voice_configuration_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tenant_id": "<string>",
"attached_agents": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"display_name": "<string>"
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.