MCPBundler Docs
MCPBundler Docs
Volver al marketplacePrimeros PasosAutenticacionTutorial - De un Bundle a un Agente Conectado
API Reference
Agent A2A Tools
Agent Channels
Agent Configuration (Staging)
Agent Configuration (Versions)
Agent Tools
Agents
Auth
Billing
Bundler
Append Conversation Messages (M2M)Append Workflow Run Trace Step (M2M, fail-open)Create Conversation (M2M)Create Workflow Run (M2M)Dispatch a Matched Tool-Call Webhook (M2M)Finalize Workflow Run Outputs (M2M, fail-closed on the caller's side)Ingest Request TelemetryResolve An SMS Conversation Thread (M2M)Mint Widget Session Token (M2M)Reconcile Token LedgerReport An Outbound Call Outcome (M2M)Resolve Agent (M2M)Resolve Agent Config Snapshot (M2M)Resolve Agent for Inbound A2A (M2M, conditionally authenticated)Resolve BundleResolve Inbound Channel (M2M)Resolve LLM Credential (M2M)Resolve Telephony Credential For Outbound Origination (M2M)Resolve Tool-Call Override Bindings (M2M)Resolve Tool-Call Webhook Bindings (M2M)Resolve Public Widget Embed Key (M2M)Resolve Agent Workflow (M2M)Search Agent Knowledge Bases (M2M)Store Workflow Node Samples (M2M, fail-open)Submit Conversation Extraction (M2M)Update Conversation Status (M2M)Record Channel Status (M2M)
Bundler Tool
Bundles
Call Campaigns
Catalog
Conversations
Credentials
Deployments
Discover
Embedding
Fleet
Knowledge Bases
LLM
MCP Listings
Media
OAuth Clients
OAuth2
Observability
Organisations
Realtime
Reviews
Roadmap
SCIM
STT
Suppression
Triggers
TTS
Users
Utils
Voices
Webhooks
Workflows
API ReferenceBundler

Resolve Agent for Inbound A2A (M2M, conditionally authenticated)

GET
/v1/bundler/a2a-agent/{agent_id}

Resolve an agent's runtime config (system prompt, LLM provider name, deployment binding, a2a_open/a2a_discoverable) for an inbound A2A task-execution call reaching agent-runtime. Unlike GET /v1/agents/{id}, this route requires no ownership JWT - the inbound caller is another agent, not the owning user's browser session. A deployment token scoped to this agent's own deployment is required unless the agent's a2a_open flag makes it callable without one, mirroring MCP tool access.

Path Parameters

agent_id*Agent Id
Formatuuid

Header Parameters

authorization?string|null

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/bundler/a2a-agent/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "name": "string",  "deployment_id": "6ef0ac85-9892-4664-a2a5-58bf2af5a8a6",  "llm_provider": "string",  "llm_credential_id": "9f53723b-12ec-46a5-bdaa-fe324d964044",  "org_id": "a40f5d1f-d889-42e9-94ea-b9b33585fc6b",  "event_org_id": "38381290-8ff7-413c-a0d2-e750a21c5122",  "system_prompt": "string",  "first_message": "string",  "a2a_open": true,  "a2a_discoverable": true,  "conversation_storage_enabled": true,  "voice": {    "pipeline_mode": "string",    "language": "string",    "voice_id": "2235c634-e4db-4ad6-aa15-066fb69b1c8f",    "stt_credential_id": "eb187100-9387-457a-a988-b0410c4a2c25",    "tts_credential_id": "e0d3c1fd-2fa1-4193-a64f-4bf411783f94",    "realtime_credential_id": "0abad67d-3a88-469c-b861-de9ea624ac84",    "silence_end_call_timeout_secs": 0,    "cascade": {      "stt_provider": "string",      "stt_model": "string",      "tts_provider": "string",      "tts_model": "string",      "enable_interruptions": true,      "min_words_before_interruption": 0,      "vad_confidence": 0,      "vad_start_secs": 0,      "vad_stop_secs": 0,      "vad_min_volume": 0,      "turn_model": "string",      "eagerness": "string",      "turn_timeout_secs": 0,      "asr_keywords": [        "string"      ],      "filter_background_speech": true,      "input_audio_format": "string",      "interruption_ignore_terms": [        "string"      ],      "transcribe_on_disabled_interruptions": true    },    "s2s": {      "realtime_provider": "string",      "realtime_model": "string",      "turn_detection_type": "string",      "turn_threshold": 0,      "prefix_padding_ms": 0,      "silence_duration_ms": 0,      "eagerness": "string"    }  },  "has_workflow": false,  "state_schema": {},  "evaluation_enabled": true,  "extraction_field_defs": [    {      "name": "string",      "type": "string",      "description": "string",      "enum_values": [        "string"      ]    }  ],  "evaluation_criteria_defs": [    {      "name": "string",      "description": "string"    }  ],  "pii_redaction_enabled": true,  "widget_enabled": true,  "widget_public": true,  "widget_embed_key": "string",  "widget_accent_color": "string",  "widget_orb_color_1": "string",  "widget_orb_color_2": "string",  "widget_allowed_domains": [    "string"  ],  "widget_placement": "string",  "widget_style_overrides": {    "property1": "string",    "property2": "string"  },  "custom_variables": {    "property1": "string",    "property2": "string"  },  "max_conversation_duration_seconds": 0,  "max_duration_message": "string",  "conversation_retention_days": 0,  "store_call_audio": true,  "client_events": [    "string"  ],  "chat_mode_enabled": true,  "dtmf_enabled": true,  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z"}
Empty
Empty
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Resolve Agent Config Snapshot (M2M)

Previous Page

Resolve Bundle

Next Page