Skip to main content
GET
/
agents
/
{agent_id}
/
bootstrap
Bootstrap Agent
curl --request GET \
  --url https://api.example.com/agents/{agent_id}/bootstrap \
  --header 'Authorization: Bearer <token>'
{
  "etag": "<string>",
  "snapshot_at": "2023-11-07T05:31:56Z",
  "agent": {},
  "workflow": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "nodes": "<unknown>",
    "edges": "<unknown>",
    "global_nodes": null,
    "status": "<string>"
  },
  "tools": [
    {
      "id": "<string>",
      "tool_key": "<string>",
      "instance_name": "<string>",
      "display_name": "<string>",
      "enabled": true,
      "config": {},
      "description": "<string>",
      "tool_type": "<string>",
      "version": 123
    }
  ],
  "transfer_targets": [
    {
      "id": "<string>",
      "name": "<string>",
      "target": "<string>",
      "mode": "<string>",
      "sip_trunk_id": "<string>",
      "sip_headers": {},
      "briefing_prompt": "<string>",
      "transfer_announcement": "<string>",
      "tags": [
        "<string>"
      ]
    }
  ],
  "available_specialists": [
    {
      "persona_id": "<string>",
      "specialist_type": "<string>",
      "display_name": "<string>",
      "description": "<string>",
      "agent_id": "<string>",
      "agent_name": "<string>",
      "config_overrides": {}
    }
  ],
  "tool_connections": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agent_id
string<uuid>
required

Response

Successful Response

Read-only snapshot of an agent's full runtime configuration.

etag
string
required
snapshot_at
string<date-time>
required
agent
Agent · object
required
workflow
BootstrapWorkflow · object
required
tools
BootstrapToolInstance · object[]
required
transfer_targets
BootstrapTransferTarget · object[]
required
available_specialists
BootstrapSpecialist · object[]
required
tool_connections
Tool Connections · object[]
required