Update agent
curl --request PATCH \
--url https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"default_functions": [
"<string>"
],
"extra_config": {
"allow_interruptions": true,
"interruption_sensitivity": 0.5,
"min_words": 1,
"turn_detector_enabled": true,
"turn_detector_is_multilingual": true,
"turn_detector_model_type": "<string>"
},
"goodbye_config": {
"enabled": true,
"message": "<string>"
},
"greeting_config": {
"agent_speaks_first": true,
"greeting": "<string>",
"pause_before_first_message": 1,
"voice_mail_message": "<string>",
"welcome_message_is_generated": true
},
"name": "<string>",
"plugins": [
"<unknown>"
],
"prompt_template": "<string>",
"room_duration_config": {
"close_room_message": "<string>",
"duration_warning_message": "<string>",
"max_duration_min": 2,
"max_silence_sec": 1,
"silence_message": "<string>",
"wait_for_message_sec": 1
},
"vad_config": {
"activation_threshold": 0.5,
"max_buffered_speech": 2,
"min_silence_duration": 1,
"min_speech_duration": 1,
"prefix_padding_duration": 1,
"sample_rate": 28000
}
}
'import requests
url = "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}"
payload = {
"default_functions": ["<string>"],
"extra_config": {
"allow_interruptions": True,
"interruption_sensitivity": 0.5,
"min_words": 1,
"turn_detector_enabled": True,
"turn_detector_is_multilingual": True,
"turn_detector_model_type": "<string>"
},
"goodbye_config": {
"enabled": True,
"message": "<string>"
},
"greeting_config": {
"agent_speaks_first": True,
"greeting": "<string>",
"pause_before_first_message": 1,
"voice_mail_message": "<string>",
"welcome_message_is_generated": True
},
"name": "<string>",
"plugins": ["<unknown>"],
"prompt_template": "<string>",
"room_duration_config": {
"close_room_message": "<string>",
"duration_warning_message": "<string>",
"max_duration_min": 2,
"max_silence_sec": 1,
"silence_message": "<string>",
"wait_for_message_sec": 1
},
"vad_config": {
"activation_threshold": 0.5,
"max_buffered_speech": 2,
"min_silence_duration": 1,
"min_speech_duration": 1,
"prefix_padding_duration": 1,
"sample_rate": 28000
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
default_functions: ['<string>'],
extra_config: {
allow_interruptions: true,
interruption_sensitivity: 0.5,
min_words: 1,
turn_detector_enabled: true,
turn_detector_is_multilingual: true,
turn_detector_model_type: '<string>'
},
goodbye_config: {enabled: true, message: '<string>'},
greeting_config: {
agent_speaks_first: true,
greeting: '<string>',
pause_before_first_message: 1,
voice_mail_message: '<string>',
welcome_message_is_generated: true
},
name: '<string>',
plugins: ['<unknown>'],
prompt_template: '<string>',
room_duration_config: {
close_room_message: '<string>',
duration_warning_message: '<string>',
max_duration_min: 2,
max_silence_sec: 1,
silence_message: '<string>',
wait_for_message_sec: 1
},
vad_config: {
activation_threshold: 0.5,
max_buffered_speech: 2,
min_silence_duration: 1,
min_speech_duration: 1,
prefix_padding_duration: 1,
sample_rate: 28000
}
})
};
fetch('https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'default_functions' => [
'<string>'
],
'extra_config' => [
'allow_interruptions' => true,
'interruption_sensitivity' => 0.5,
'min_words' => 1,
'turn_detector_enabled' => true,
'turn_detector_is_multilingual' => true,
'turn_detector_model_type' => '<string>'
],
'goodbye_config' => [
'enabled' => true,
'message' => '<string>'
],
'greeting_config' => [
'agent_speaks_first' => true,
'greeting' => '<string>',
'pause_before_first_message' => 1,
'voice_mail_message' => '<string>',
'welcome_message_is_generated' => true
],
'name' => '<string>',
'plugins' => [
'<unknown>'
],
'prompt_template' => '<string>',
'room_duration_config' => [
'close_room_message' => '<string>',
'duration_warning_message' => '<string>',
'max_duration_min' => 2,
'max_silence_sec' => 1,
'silence_message' => '<string>',
'wait_for_message_sec' => 1
],
'vad_config' => [
'activation_threshold' => 0.5,
'max_buffered_speech' => 2,
'min_silence_duration' => 1,
'min_speech_duration' => 1,
'prefix_padding_duration' => 1,
'sample_rate' => 28000
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}"
payload := strings.NewReader("{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}"
response = http.request(request)
puts response.read_body{
"allowed_sip_trunks": [
"<string>"
],
"background_sound": [
123
],
"created_at": "<string>",
"default_functions": [
"<string>"
],
"extra_config": [
123
],
"goodbye_config": [
123
],
"greeting_config": [
123
],
"id": "<string>",
"llm_config": [
123
],
"name": "<string>",
"organization_id": "<string>",
"plugins": [
123
],
"precall_webhook": [
123
],
"prompt_template": "<string>",
"public_quota": 123,
"room_duration_config": [
123
],
"tools": [
{
"config_override": {},
"description": "<string>",
"is_enabled": true,
"method": "<string>",
"name": "<string>",
"parameters": [
{
"description": "<string>",
"name": "<string>",
"required": true,
"type": "<string>"
}
],
"tool_id": "<string>",
"url": "<string>"
}
],
"transcriber_config": [
123
],
"type": "<string>",
"updated_at": "<string>",
"vad_config": [
123
],
"voice_config": [
123
]
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}Agents
Update agent
Update agent details (partial update)
PATCH
/
org
/
{org_id}
/
agents
/
{agent_id}
Update agent
curl --request PATCH \
--url https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"default_functions": [
"<string>"
],
"extra_config": {
"allow_interruptions": true,
"interruption_sensitivity": 0.5,
"min_words": 1,
"turn_detector_enabled": true,
"turn_detector_is_multilingual": true,
"turn_detector_model_type": "<string>"
},
"goodbye_config": {
"enabled": true,
"message": "<string>"
},
"greeting_config": {
"agent_speaks_first": true,
"greeting": "<string>",
"pause_before_first_message": 1,
"voice_mail_message": "<string>",
"welcome_message_is_generated": true
},
"name": "<string>",
"plugins": [
"<unknown>"
],
"prompt_template": "<string>",
"room_duration_config": {
"close_room_message": "<string>",
"duration_warning_message": "<string>",
"max_duration_min": 2,
"max_silence_sec": 1,
"silence_message": "<string>",
"wait_for_message_sec": 1
},
"vad_config": {
"activation_threshold": 0.5,
"max_buffered_speech": 2,
"min_silence_duration": 1,
"min_speech_duration": 1,
"prefix_padding_duration": 1,
"sample_rate": 28000
}
}
'import requests
url = "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}"
payload = {
"default_functions": ["<string>"],
"extra_config": {
"allow_interruptions": True,
"interruption_sensitivity": 0.5,
"min_words": 1,
"turn_detector_enabled": True,
"turn_detector_is_multilingual": True,
"turn_detector_model_type": "<string>"
},
"goodbye_config": {
"enabled": True,
"message": "<string>"
},
"greeting_config": {
"agent_speaks_first": True,
"greeting": "<string>",
"pause_before_first_message": 1,
"voice_mail_message": "<string>",
"welcome_message_is_generated": True
},
"name": "<string>",
"plugins": ["<unknown>"],
"prompt_template": "<string>",
"room_duration_config": {
"close_room_message": "<string>",
"duration_warning_message": "<string>",
"max_duration_min": 2,
"max_silence_sec": 1,
"silence_message": "<string>",
"wait_for_message_sec": 1
},
"vad_config": {
"activation_threshold": 0.5,
"max_buffered_speech": 2,
"min_silence_duration": 1,
"min_speech_duration": 1,
"prefix_padding_duration": 1,
"sample_rate": 28000
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
default_functions: ['<string>'],
extra_config: {
allow_interruptions: true,
interruption_sensitivity: 0.5,
min_words: 1,
turn_detector_enabled: true,
turn_detector_is_multilingual: true,
turn_detector_model_type: '<string>'
},
goodbye_config: {enabled: true, message: '<string>'},
greeting_config: {
agent_speaks_first: true,
greeting: '<string>',
pause_before_first_message: 1,
voice_mail_message: '<string>',
welcome_message_is_generated: true
},
name: '<string>',
plugins: ['<unknown>'],
prompt_template: '<string>',
room_duration_config: {
close_room_message: '<string>',
duration_warning_message: '<string>',
max_duration_min: 2,
max_silence_sec: 1,
silence_message: '<string>',
wait_for_message_sec: 1
},
vad_config: {
activation_threshold: 0.5,
max_buffered_speech: 2,
min_silence_duration: 1,
min_speech_duration: 1,
prefix_padding_duration: 1,
sample_rate: 28000
}
})
};
fetch('https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'default_functions' => [
'<string>'
],
'extra_config' => [
'allow_interruptions' => true,
'interruption_sensitivity' => 0.5,
'min_words' => 1,
'turn_detector_enabled' => true,
'turn_detector_is_multilingual' => true,
'turn_detector_model_type' => '<string>'
],
'goodbye_config' => [
'enabled' => true,
'message' => '<string>'
],
'greeting_config' => [
'agent_speaks_first' => true,
'greeting' => '<string>',
'pause_before_first_message' => 1,
'voice_mail_message' => '<string>',
'welcome_message_is_generated' => true
],
'name' => '<string>',
'plugins' => [
'<unknown>'
],
'prompt_template' => '<string>',
'room_duration_config' => [
'close_room_message' => '<string>',
'duration_warning_message' => '<string>',
'max_duration_min' => 2,
'max_silence_sec' => 1,
'silence_message' => '<string>',
'wait_for_message_sec' => 1
],
'vad_config' => [
'activation_threshold' => 0.5,
'max_buffered_speech' => 2,
'min_silence_duration' => 1,
'min_speech_duration' => 1,
'prefix_padding_duration' => 1,
'sample_rate' => 28000
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}"
payload := strings.NewReader("{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/agents/{agent_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_functions\": [\n \"<string>\"\n ],\n \"extra_config\": {\n \"allow_interruptions\": true,\n \"interruption_sensitivity\": 0.5,\n \"min_words\": 1,\n \"turn_detector_enabled\": true,\n \"turn_detector_is_multilingual\": true,\n \"turn_detector_model_type\": \"<string>\"\n },\n \"goodbye_config\": {\n \"enabled\": true,\n \"message\": \"<string>\"\n },\n \"greeting_config\": {\n \"agent_speaks_first\": true,\n \"greeting\": \"<string>\",\n \"pause_before_first_message\": 1,\n \"voice_mail_message\": \"<string>\",\n \"welcome_message_is_generated\": true\n },\n \"name\": \"<string>\",\n \"plugins\": [\n \"<unknown>\"\n ],\n \"prompt_template\": \"<string>\",\n \"room_duration_config\": {\n \"close_room_message\": \"<string>\",\n \"duration_warning_message\": \"<string>\",\n \"max_duration_min\": 2,\n \"max_silence_sec\": 1,\n \"silence_message\": \"<string>\",\n \"wait_for_message_sec\": 1\n },\n \"vad_config\": {\n \"activation_threshold\": 0.5,\n \"max_buffered_speech\": 2,\n \"min_silence_duration\": 1,\n \"min_speech_duration\": 1,\n \"prefix_padding_duration\": 1,\n \"sample_rate\": 28000\n }\n}"
response = http.request(request)
puts response.read_body{
"allowed_sip_trunks": [
"<string>"
],
"background_sound": [
123
],
"created_at": "<string>",
"default_functions": [
"<string>"
],
"extra_config": [
123
],
"goodbye_config": [
123
],
"greeting_config": [
123
],
"id": "<string>",
"llm_config": [
123
],
"name": "<string>",
"organization_id": "<string>",
"plugins": [
123
],
"precall_webhook": [
123
],
"prompt_template": "<string>",
"public_quota": 123,
"room_duration_config": [
123
],
"tools": [
{
"config_override": {},
"description": "<string>",
"is_enabled": true,
"method": "<string>",
"name": "<string>",
"parameters": [
{
"description": "<string>",
"name": "<string>",
"required": true,
"type": "<string>"
}
],
"tool_id": "<string>",
"url": "<string>"
}
],
"transcriber_config": [
123
],
"type": "<string>",
"updated_at": "<string>",
"vad_config": [
123
],
"voice_config": [
123
]
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}Authorizations
Body
application/json
Agent update details
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
voice, chat, video Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
OK
Show child attributes
Show child attributes
⌘I

