client.voice.get() -> typing.Any
-
-
-
Get the current account-level default voice for AI phone agents.
Returns which voice is used for all AI agents under this account unless overridden at the agent level or per-call. Controls how your AI agents sound during phone conversations.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.voice.get()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.voice.reset() -> typing.Any
-
-
-
Reset account voice to the system default.
Removes the account-level voice override so all AI agents fall back to the system default voice during phone calls (unless they have their own voice_id configured).
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.voice.reset()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.voice.set(...) -> typing.Any
-
-
-
Set the account-level default voice for AI phone agents.
This becomes the default voice for ALL AI agents under this account, controlling how they sound on phone calls. Individual agents or specific calls can still override this setting.
Voice resolution priority:
- Per-call voice_id (POST /v1/calls)
- Agent voice_id (PATCH /v1/agents/{id})
- Account default (this endpoint) ← you are here
- System default (Supportive Male)
Accepts:
- A preset name: "female-1", "female-2", "female-3", "male-1", "male-2", "male-3"
- A Cartesia voice UUID: "f786b574-daa5-4673-aa0c-cbe3e8534c02"
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.voice.set( voice_id="voice_id", )
-
-
-
voice_id:
str— TTS voice preset name (e.g. 'female-1', 'male-1') or Cartesia voice UUID
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.voice.list() -> typing.Any
-
-
-
List all available voice presets for AI phone agents.
Returns named TTS (text-to-speech) voice presets that can be used when configuring AI agents or making phone calls. Each voice defines how your AI agent sounds on the phone.
You can use a preset name (e.g. "female-1", "male-1") or pass any valid Cartesia voice UUID directly as a voice_id.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.voice.list()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.agents.list() -> typing.Any
-
-
-
List all AI voice agents configured on your account.
Returns every AI phone agent you've created, including their system prompts, voice settings, and associated phone numbers. Useful for checking which agents are ready to make or receive calls.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.agents.list()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.agents.create(...) -> AgentOut
-
-
-
Create a new AI voice agent for telephony.
Sets up a new AI phone agent with a custom system prompt, voice, and greeting. Once created, buy a phone number and attach it to this agent so it can make and receive calls autonomously.
Fields:
- name: Display name for the agent
- system_prompt: Instructions that define the agent's personality and behavior on calls
- initial_greeting: What the AI agent says when the call connects
- voice_id: TTS voice preset (e.g. "female-1") or Cartesia UUID
- transfer_number: Phone number to transfer calls to (e.g. a human operator)
- voicemail_message: Message the agent leaves if the call goes to voicemail
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.agents.create( name="name", )
-
-
-
name:
str— Display name for the AI voice agent
-
system_prompt:
typing.Optional[str]— Default instructions for the agent's personality and behavior on ALL calls (inbound and outbound). Can be overridden per-call via POST /v1/calls.
-
initial_greeting:
typing.Optional[str]— Default opening line spoken on ALL calls (inbound and outbound), e.g. 'Hello, how can I help you today?'. Can be overridden per-call via POST /v1/calls.
-
voice_id:
typing.Optional[str]— TTS voice preset name (e.g. 'female-1', 'male-1') or Cartesia voice UUID; defaults to system voice if not set
-
transfer_number:
typing.Optional[str]— Phone number in E.164 format to transfer calls to (e.g. a human operator fallback)
-
voicemail_message:
typing.Optional[str]— Message the AI agent leaves if the call goes to voicemail
-
owner_phone:
typing.Optional[str]— Owner's phone number in E.164 format (e.g. '+12125551234'). Calls from this number enter task mode — the agent treats speech as executable instructions.
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.agents.get(...) -> typing.Any
-
-
-
Get details of a specific AI voice agent.
Returns the agent's full configuration including system prompt, voice settings, greeting, and transfer number.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.agents.get( agent_id="agent_id", )
-
-
-
agent_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.agents.delete(...) -> typing.Any
-
-
-
Delete an AI voice agent.
Permanently removes the agent and detaches any phone numbers assigned to it. Detached numbers remain active on your account and can be reassigned to another agent.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.agents.delete( agent_id="agent_id", )
-
-
-
agent_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.agents.update(...) -> typing.Any
-
-
-
Update an AI voice agent's configuration.
Modify any combination of the agent's settings: system prompt, voice, greeting, transfer number, or voicemail message. Changes take effect on the next call the agent handles. Only include the fields you want to change — unset fields are preserved.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.agents.update( agent_id="agent_id", )
-
-
-
agent_id:
str
-
name:
typing.Optional[str]— New display name for the AI voice agent
-
system_prompt:
typing.Optional[str]— Updated default instructions for ALL future calls (does not affect calls already in progress)
-
initial_greeting:
typing.Optional[str]— Updated default greeting for ALL future calls (inbound and outbound)
-
voice_id:
typing.Optional[str]— New TTS voice preset name or Cartesia voice UUID
-
transfer_number:
typing.Optional[str]— Updated transfer phone number in E.164 format
-
voicemail_message:
typing.Optional[str]— Updated voicemail message
-
owner_phone:
typing.Optional[str]— Updated owner phone number in E.164 format for task mode
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.billing.get_balance() -> typing.Any
-
-
-
Get your AI telephony account balance and rate card.
Returns the current balance, currency, billing rates for calls and phone numbers, and how many call minutes or phone numbers the balance can cover. Use this to check affordability before making calls or buying numbers for your AI agents.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.billing.get_balance()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.billing.get_expenditure(...) -> typing.Any
-
-
-
Get a detailed expenditure breakdown for AI telephony usage.
Shows total spend split by category (voice calls, phone number provisioning, top-ups, refunds) with counts and averages. Useful for tracking how much your AI agents are spending on phone calls and phone numbers.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.billing.get_expenditure()
-
-
-
period:
typing.Optional[str]— Time period: 'current_month', 'last_month', 'all_time', or 'YYYY-MM'
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.billing.list_call_charges(...) -> typing.Any
-
-
-
List individual call charges from AI agent phone calls.
Each entry includes the voice call duration, cost, direction (inbound/outbound), phone numbers involved, and timestamp. Shows exactly how much each AI agent call cost.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.billing.list_call_charges()
-
-
-
limit:
typing.Optional[int]— Maximum number of call charges to return (1-200)
-
offset:
typing.Optional[int]— Number of records to skip for pagination
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.billing.list_number_charges(...) -> typing.Any
-
-
-
List phone number provisioning charges.
Shows the cost of each phone number bought for your AI agents, including the number, country, and current status.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.billing.list_number_charges()
-
-
-
limit:
typing.Optional[int]— Maximum number of number charges to return (1-200)
-
offset:
typing.Optional[int]— Number of records to skip for pagination
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.billing.get_summary(...) -> typing.Any
-
-
-
Month-over-month spending summary.
Returns total debits grouped by month for trend analysis.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.billing.get_summary()
-
-
-
months:
typing.Optional[int]— Number of months to show
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.list(...) -> typing.Any
-
-
-
List voice calls made by your AI agents.
Returns call history with optional filters by agent or status. Each entry includes direction (inbound/outbound), duration, phone numbers, and current status.
Filters:
- agent_id: only calls for a specific AI agent
- status: "initiated", "in-progress", "completed", or "failed"
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.list()
-
-
-
agent_id:
typing.Optional[str]— Filter calls by AI agent ID
-
status:
typing.Optional[str]— Filter by call status: 'initiated', 'in-progress', 'completed', or 'failed'
-
limit:
typing.Optional[int]— Maximum number of calls to return (1-200)
-
offset:
typing.Optional[int]— Number of calls to skip for pagination
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.create(...) -> typing.Any
-
-
-
Make an outbound phone call from your AI agent.
Initiates a real phone call from the AI agent's phone number to the specified destination. The agent uses its configured system prompt, voice, and greeting to conduct the conversation autonomously.
The AI agent handles the entire call — speech-to-text, LLM reasoning, and text-to-speech — in real time. The call transcript is saved automatically and can be retrieved via GET /v1/calls/{call_id}/transcript.
Request body:
- agent_id: the AI agent making the call
- to_number: destination phone number in E.164 format (e.g. "+12125551234")
- from_number_id: (optional) specific number to call from
- system_prompt: (optional) override the agent's default prompt for this call
- initial_greeting: (optional) override the agent's greeting for this call
- voice_id: (optional) override the voice for this call
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.create( agent_id="agent_id", to_number="to_number", )
-
-
-
agent_id:
str— ID of the AI agent making the call (e.g. 'agt_abc123')
-
to_number:
str— Destination phone number in E.164 format (e.g. '+12125551234')
-
system_prompt:
typing.Optional[str]— Per-call system prompt override. Replaces the agent's default prompt for this call ONLY. If omitted, the agent's default system_prompt is used.
-
initial_greeting:
typing.Optional[str]— Per-call greeting override. Replaces the agent's default greeting for this call ONLY. If omitted, the agent's default initial_greeting is used.
-
voice_id:
typing.Optional[str]— Override the TTS voice for this call: preset name (e.g. 'female-1') or Cartesia UUID
-
from_number_id:
typing.Optional[str]— Specific phone number ID to call from; defaults to the agent's assigned number
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.get(...) -> typing.Any
-
-
-
Get full details of a specific voice call.
Returns the call's metadata including direction, phone numbers, status, duration, AI agent configuration used, and the full conversation transcript between the AI agent and the caller.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.get( call_id="call_id", )
-
-
-
call_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.push_context(...) -> typing.Any
-
-
-
Push context into a LIVE relay-mode call (mid-call context injection).
This is the required way for backend agents (Hermes, OpenClaw, etc.) to answer a live caller after a
call.utteranceevent. Do your work, then POST a concise caller-ready response here. It is spoken verbatim and stored as the assistant turn for later conversation context.AUTHENTICATION (one of):
- Push token (preferred — no API key): the
push_tokenfrom thecall.utterancepayload, viaX-Push-Tokenheader,?token=query param, orpush_tokenbody field. - Bearer API key:
Authorization: Bearer al_live_...for the account that owns the call.
Body — any of these keys works (
contextis canonical): {"context": "the exact short response the caller should hear"}Other accepted keys:
summary,answer,response,reply,text,result.Every response must include the exact
turn_idfromcall.utterance. Late context is rejected instead of being applied to another question.Returns: delivered=true, status="live" — voice agent will speak it now delivered=true, status="duplicate" — identical retry already accepted HTTP 409 — turn is stale/cancelled HTTP 410 — call has ended. STOP working on this request and abandon any in-flight lookup. No further context will be spoken.
- Push token (preferred — no API key): the
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.push_context( call_id="call_id", request={ "key": "value" }, )
-
-
-
call_id:
str
-
request:
typing.Dict[str, typing.Any]
-
token:
typing.Optional[str]— Push token (alt to X-Push-Token header / body).
-
turn_id:
typing.Optional[str]— Turn ID from call.utterance.
-
push_token:
typing.Optional[str]
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.hangup(...) -> typing.Any
-
-
-
Hang up an active phone call.
Programmatically terminates an in-progress voice call. Use this when the AI agent needs to end the conversation, or to force-stop a call that is no longer needed. The call's final transcript and billing are processed automatically after hangup.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.hangup( call_id="call_id", )
-
-
-
call_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.calls.get_transcript(...) -> typing.Any
-
-
-
Get the full conversation transcript for a call.
Returns the complete speech-to-text transcript of the phone call, with each turn labeled by role ("human" for the caller, "assistant" for the AI agent). Useful for reviewing what was said on the call, extracting information, or auditing AI agent behavior.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.calls.get_transcript( call_id="call_id", )
-
-
-
call_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.events.poll(...) -> typing.Any
-
-
-
Poll for telephony events from your AI agents.
Returns pending events such as call completions, transcripts, and failures. Events are consumed on retrieval (one-time read) — once polled, they are automatically deleted from the mailbox.
Your AI agent should call this endpoint periodically to receive notifications about completed calls and their transcripts.
Filters:
- agent_id: only events for a specific AI agent
- event_type: e.g. "call.completed", "call.failed"
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.events.poll()
-
-
-
agent_id:
typing.Optional[str]— Filter events by AI agent ID
-
event_type:
typing.Optional[str]— Filter by event type (e.g. 'call.completed', 'call.failed')
-
limit:
typing.Optional[int]— Maximum number of events to return (1-200)
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.events.peek(...) -> typing.Any
-
-
-
Peek at pending telephony events without consuming them.
Returns a preview of queued events (call completions, transcripts) without removing them from the mailbox. Useful for checking if there are events to process before committing to retrieve them.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.events.peek()
-
-
-
agent_id:
typing.Optional[str]— Filter events by AI agent ID
-
limit:
typing.Optional[int]— Maximum number of events to preview (1-200)
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.messages.list(...) -> typing.Any
-
-
-
List SMS messages sent and received by your AI agents.
Returns message history with optional filters by AI agent or conversation. Each entry includes direction (inbound/outbound), phone numbers, message body, and delivery status.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.messages.list()
-
-
-
agent_id:
typing.Optional[str]— Filter messages by AI agent ID
-
conversation_id:
typing.Optional[str]— Filter messages by conversation thread ID
-
limit:
typing.Optional[int]— Maximum number of messages to return (1-200)
-
offset:
typing.Optional[int]— Number of messages to skip for pagination
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.messages.send(...) -> typing.Any
-
-
-
Send an outbound SMS message from an AI agent's phone number.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.messages.send( agent_id="agent_id", to_number="to_number", body="body", )
-
-
-
agent_id:
str— ID of the AI agent sending the SMS (e.g. 'agt_abc123')
-
to_number:
str— Destination phone number in E.164 format (e.g. '+12125551234')
-
body:
str— SMS message text content
-
media_url:
typing.Optional[str]— URL of media to attach (MMS)
-
from_number_id:
typing.Optional[str]— Specific phone number ID to send from; defaults to the agent's assigned number
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.messages.list_conversations(...) -> typing.Any
-
-
-
List all SMS conversations for your AI agents.
Returns conversation threads, optionally filtered by AI agent. Each conversation represents an ongoing SMS exchange between an AI agent's phone number and an external contact.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.messages.list_conversations()
-
-
-
agent_id:
typing.Optional[str]
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.numbers.list() -> typing.Any
-
-
-
List all phone numbers provisioned on your account.
Returns every phone number you've bought for your AI agents, including which agent each number is assigned to, the number's status (active/released), and country.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.numbers.list()
-
-
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.numbers.buy(...) -> typing.Any
-
-
-
Buy a US phone number for your AI agent.
Searches for and purchases a real US phone number from the telephony provider, then attaches it to the specified AI agent. Once attached, the agent can make outbound calls and receive inbound calls on this number.
Each AI agent can only have ONE active phone number. Costs $2.00 per number.
Request body:
- agent_id: str (required) — the AI agent to assign this number to
- country: str (must be "US")
- number_type: "local" | "tollfree"
- area_code: preferred 3-digit US area code (e.g. "212" for NYC, "415" for SF)
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.numbers.buy( agent_id="agent_id", )
-
-
-
agent_id:
str— ID of the AI agent to assign this phone number to (e.g. 'agt_abc123')
-
country:
typing.Optional[str]— Country code for the phone number (currently only 'US' is supported)
-
number_type:
typing.Optional[str]— Type of phone number: 'local' or 'tollfree'
-
area_code:
typing.Optional[str]— Preferred 3-digit US area code (e.g. '212' for NYC, '415' for SF, '310' for LA)
-
pattern:
typing.Optional[str]— Legacy digit pattern match (prefer area_code instead)
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.numbers.get(...) -> typing.Any
-
-
-
Get details of a specific phone number.
Returns the phone number, its assigned AI agent, provider ID, country, and current status.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.numbers.get( number_id="number_id", )
-
-
-
number_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.numbers.reassign(...) -> typing.Any
-
-
-
Reassign a phone number to a different AI agent.
Moves an existing phone number from one AI agent to another. The target agent must not already have an active number assigned. The phone number remains active — only the agent ownership changes.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.numbers.reassign( number_id="number_id", agent_id="agent_id", )
-
-
-
number_id:
str
-
agent_id:
str
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.webhooks.list(...) -> typing.Any
-
-
-
List the account's per-agent webhook configuration(s).
Secrets are masked. Pass
agent_idto inspect a single agent's webhook. The full secret is only ever shown once, on the POST that creates/replaces it.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.webhooks.list()
-
-
-
agent_id:
typing.Optional[str]— Inspect one agent's webhook (omit to list all)
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.webhooks.set(...) -> WebhookCreated
-
-
-
Create or replace an agent's webhook.
The configured URL receives ALL of that agent's event types — call lifecycle (
call.received,call.completed,call.failed), SMS (sms.received), and future events — as signed JSON POSTs. Each agent may have at most one webhook; POSTing again replaces it.agent_id: the agent whose events this webhook receives (required).secret: HMAC signing secret. Omit to auto-generate.
The response returns the full
secretonce — store it to verify the signature header on deliveries.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.webhooks.set( url="url", agent_id="agent_id", )
-
-
-
url:
str— HTTPS URL that will receive this agent's events as signed JSON POSTs. Setting this replaces any existing webhook for the agent.
-
agent_id:
str— ID of the agent whose events this webhook receives. Each agent may have at most one webhook.
-
secret:
typing.Optional[str]— Optional HMAC signing secret. Auto-generated if omitted. Used to verify the signature header on delivered payloads.
-
signature_header:
typing.Optional[str]— Header name for the HMAC-SHA256 signature of the raw body. Defaults to 'X-Webhook-Signature' (natively verified by Hermes, OpenClaw, and other agent platforms). Set to 'X-Hub-Signature-256' for GitHub-style verification, or any custom header name your platform expects. Omit to keep the existing value when updating.
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.webhooks.delete(...) -> typing.Any
-
-
-
Remove an agent's webhook. No events for that agent will be delivered via HTTP afterwards; they remain available via GET /v1/events (the mailbox).
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.webhooks.delete( agent_id="agent_id", )
-
-
-
agent_id:
str— Agent whose webhook to delete
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-
client.webhooks.test(...) -> typing.Any
-
-
-
Fire a signed
webhook.testevent to the agent's webhook.Uses the exact same event bus (publish_event) that real telephony events use, so a successful delivery confirms the entire pipeline is wired correctly. Returns 404 if no webhook is configured for the agent.
-
-
-
from agentline_ai import AgentLine from agentline_ai.environment import AgentLineEnvironment client = AgentLine( api_key="<token>", environment=AgentLineEnvironment.PRODUCTION, ) client.webhooks.test( agent_id="agent_id", )
-
-
-
agent_id:
str— Agent whose webhook to test
-
request_options:
typing.Optional[RequestOptions]— Request-specific configuration.
-
-