curl --request GET \
--url https://api.fluents.ai/v1/agents/list \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"prompt": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"label": "My Prompt",
"description": "This is a description",
"content": "You are a helpful assistant...",
"context_endpoint": "https://api.example.com/context",
"collect_fields": [
"<string>"
],
"type": "prompt",
"tags": [
"tag1",
"tag2"
]
},
"actions": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"type": "action_transfer_call",
"config": {},
"label": "Transfer Call",
"description": "This is a description",
"action_trigger": {}
}
],
"voice": {},
"name": "My Agent",
"language": "en",
"initial_message": "Hello, how can I help you today?",
"interrupt_sensitivity": "low",
"context_endpoint": "https://api.example.com/context",
"noise_suppression": true,
"endpointing_sensitivity": "auto",
"ivr_navigation_mode": "default",
"conversation_speed": 0.5,
"initial_message_delay": 1000,
"openai_model_name_override": "gpt-4",
"ask_if_human_present_on_idle": true,
"run_do_not_call_detection": true,
"llm_fallback": {},
"deepgram_keywords": {
"kansas": "10"
},
"idle_time_seconds": 10,
"llm_temperature": 0.5,
"enable_recording": true,
"provider": "openai",
"model": "gpt-4",
"label": "My Agent",
"description": "This is a description",
"transcriber": {},
"call_duration_sec": 10,
"max_idle_check_count": 10,
"max_aggregate_idle_check_count": 123,
"idle_after_interaction_seconds": 123,
"voicemail_message": "<string>"
}
],
"page": 123,
"size": 123,
"has_more": true,
"total": 123,
"total_is_estimated": true
}curl --request GET \
--url https://api.fluents.ai/v1/agents/list \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"prompt": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"label": "My Prompt",
"description": "This is a description",
"content": "You are a helpful assistant...",
"context_endpoint": "https://api.example.com/context",
"collect_fields": [
"<string>"
],
"type": "prompt",
"tags": [
"tag1",
"tag2"
]
},
"actions": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"user_id": "550e8400-e29b-41d4-a716-446655440000",
"type": "action_transfer_call",
"config": {},
"label": "Transfer Call",
"description": "This is a description",
"action_trigger": {}
}
],
"voice": {},
"name": "My Agent",
"language": "en",
"initial_message": "Hello, how can I help you today?",
"interrupt_sensitivity": "low",
"context_endpoint": "https://api.example.com/context",
"noise_suppression": true,
"endpointing_sensitivity": "auto",
"ivr_navigation_mode": "default",
"conversation_speed": 0.5,
"initial_message_delay": 1000,
"openai_model_name_override": "gpt-4",
"ask_if_human_present_on_idle": true,
"run_do_not_call_detection": true,
"llm_fallback": {},
"deepgram_keywords": {
"kansas": "10"
},
"idle_time_seconds": 10,
"llm_temperature": 0.5,
"enable_recording": true,
"provider": "openai",
"model": "gpt-4",
"label": "My Agent",
"description": "This is a description",
"transcriber": {},
"call_duration_sec": 10,
"max_idle_check_count": 10,
"max_aggregate_idle_check_count": 123,
"idle_after_interaction_seconds": 123,
"voicemail_message": "<string>"
}
],
"page": 123,
"size": 123,
"has_more": true,
"total": 123,
"total_is_estimated": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?