Agents
List Agents
GET
/
v1
/
agents
/
list
curl --request GET \
--url https://api.vocode.dev/v1/agents/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"actions": [],
"context_endpoint": "<string>",
"conversation_speed": 123,
"endpointing_sensitivity": "auto",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"initial_message": "<string>",
"initial_message_delay": 123,
"interrupt_sensitivity": "low",
"ivr_navigation_mode": "default",
"language": "en",
"noise_suppression": true,
"openai_account_connection": {
"credentials": {
"openai_api_key": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "account_connection_openai",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"openai_model_name_override": "<string>",
"prompt": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"vector_database": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voice": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"webhook": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
page
integer
default: 1size
integer
default: 10Response
200 - application/json
has_more
boolean
requireditems
object[]
requiredpage
integer
requiredsize
integer
requiredcurl --request GET \
--url https://api.vocode.dev/v1/agents/list \
--header 'Authorization: <authorization>'
{
"has_more": true,
"items": [
{
"actions": [],
"context_endpoint": "<string>",
"conversation_speed": 123,
"endpointing_sensitivity": "auto",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"initial_message": "<string>",
"initial_message_delay": 123,
"interrupt_sensitivity": "low",
"ivr_navigation_mode": "default",
"language": "en",
"noise_suppression": true,
"openai_account_connection": {
"credentials": {
"openai_api_key": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "account_connection_openai",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"openai_model_name_override": "<string>",
"prompt": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"vector_database": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"voice": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"webhook": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
],
"page": 123,
"size": 123
}