Transfer call tool

Route an active phone call to a phone number or SIP URI.

The transfer call tool lets an assistant route an active phone call to a phone number or Session Initiation Protocol (SIP) URI. Use it to connect a caller with a person, department, or external phone system based on the conversation. To move a call between assistants, use the handoff tool instead; handoff works with standalone assistants and assistants in a Squad.

Prerequisites

Before you create the tool, prepare:

  • A Vapi assistant that handles phone calls
  • A reachable destination phone number in E.164 format, for example, +14155550100, or a valid SIP URI
  • A private Vapi API key for the curl method

Configure the transfer call tool

Create a reusable transfer call tool, define its destinations, and add it to an assistant.

1

Create the tool

Open Tools in the Vapi Dashboard, click Create Tool, and select Transfer Call.

Vapi Dashboard Create Tool menu with Transfer Call under Phone Call Tools
Select Transfer Call from the Create Tool menu
2

Describe when to transfer

Under Tool Settings, enter a clear Tool Name and Description. Describe the conditions that should trigger a transfer so the assistant can choose the tool reliably.

For example:

System prompt
Transfer the caller to a billing specialist when they ask about an
invoice, refund, or payment. Only transfer after the caller agrees.
3

Add a destination

Under Destinations, click Add Destination, then select Phone Number or SIP. Enter the destination and a specific description of when the assistant should use it.

For a phone number, use E.164 format, including the + prefix and country code. If you add multiple destinations, give each one a distinct description so the assistant can route the caller correctly.

Vapi Dashboard phone-number destination with an E.164 number and customer message
Configure a phone-number destination
4

Configure transfer messages

Optionally configure a message for the assistant to say before the transfer. If neither the destination nor the tool defines a message, the assistant says Transferring the call now by default. Set the destination message to an empty string for a silent transfer. A message can be at most 1,000 characters.

Expand Transfer Plan to choose how this destination receives the call. Leave Blind Transfer selected for an immediate transfer, or follow the mode-specific guides below to configure another behavior.

Vapi Dashboard destination description and Transfer Plan set to Blind Transfer
Describe the route and choose its transfer mode
5

Add the tool to an assistant

Open Assistants, select the assistant, and add the new tool from the assistant’s Tools section. Update the system prompt to state exactly when the assistant should transfer the call, then save the assistant.

Vapi Dashboard assistant Tools tab with the Add tool button
Open the assistant's Tools tab and click Add tool

Choose a destination

Use the destination type that matches the system receiving the call.

DestinationUse it forRequired value
Phone numberA person, department, or public switched telephone network (PSTN) endpointnumber in E.164 format
SIPA SIP trunk, private branch exchange (PBX), or other SIP endpointsipUri

For a phone-number destination that uses an extension, set extension. Vapi dials the extension after the destination answers.

A destination’s description tells the assistant when to select it. Keep each description specific to a routing intent, for example, billing, sales, or technical support.

To select or construct a destination at runtime instead of storing it on the tool, follow Dynamic call transfers.

Route to multiple destinations

A single transfer call tool can contain multiple phone-number destinations, SIP destinations, or a mix of both. When the assistant invokes the tool, it uses the conversation and each destination’s description to select one destination; it does not call every destination in the array.

In the Dashboard, click Add Destination for each route. Give every destination a distinct description, then add matching routing rules to the assistant’s system prompt. For example:

System prompt
- Transfer billing questions to the billing phone number.
- Transfer purchase questions to the sales phone number.
- Transfer technical incidents to the support SIP URI.
- If the caller's intent is unclear, ask which team they need before transferring.

With the API, add one object for each route to destinations. Each object can have its own message and transfer plan. When updating a tool, include every destination that should remain because the new destinations array replaces the existing array.

To move the conversation to another Vapi assistant, use the handoff tool instead of a phone or SIP transfer. Handoff works between standalone assistants and between assistants in a Squad, and can carry conversation context into the destination assistant.

Choose a transfer mode

The transfer mode controls what happens on the destination call leg before the customer is connected. The Dashboard displays a readable label; API requests use the corresponding transferPlan.mode value.

Dashboard modeAPI valueWhat it does
Blind Transferblind-transferConnects the customer without speaking to the destination. This is the default. See Blind transfer.
Blind Transfer with Summary in SIP Headerblind-transfer-add-summary-to-sip-headerAdds a generated summary to the X-Transfer-Summary SIP header, then transfers immediately. See Blind transfer.
Warm Transfer with Messagewarm-transfer-say-messageSpeaks a fixed message to the destination before connecting the customer. See Warm transfer.
Warm Transfer with Summarywarm-transfer-say-summarySpeaks a generated conversation summary to the destination before connecting. See Warm transfer.
Warm Transfer with TwiMLwarm-transfer-twimlExecutes TwiML on the destination call leg before connecting. See Warm transfer.
Warm Transfer - Wait for Operator, Then Say Messagewarm-transfer-wait-for-operator-to-speak-first-and-then-say-messageWaits for destination speech, then delivers a fixed message. See Warm transfer.
Warm Transfer - Wait for Operator, Then Say Summarywarm-transfer-wait-for-operator-to-speak-first-and-then-say-summaryWaits for destination speech, then delivers a generated summary. See Warm transfer.
Warm Transfer - Experimentalwarm-transfer-experimentalPlaces the customer on hold and supports fallback, summaries, custom audio, or a transfer-assistant conversation. See Assistant-based warm transfer.

Use Dynamic call transfers when the destination is selected at runtime. Dynamic destination selection is separate from the transfer mode.

Verify the transfer

Place a test call and ask for the destination described in the tool. Confirm that the call log contains a transferCall tool invocation and that the destination rings or answers.

The assistant-forwarded-call ended reason confirms that Vapi initiated the transfer. It does not confirm that the downstream telephony provider completed it, so check the provider’s call logs when the destination does not receive the call.

Troubleshooting

SymptomLikely causeResolution
The assistant says it will transfer, but the call remains activeThe model generated speech without invoking the toolRequire the acknowledgment and tool invocation in the same response. Check the call log for a transferCall invocation.
The assistant selects the wrong destinationDestination descriptions overlap or do not state a clear routing intentGive every destination a distinct description and add matching routing rules to the system prompt.
The tool returns a validation or configuration errorThe destination is missing or malformedConfirm that destinations is an array and that each item has a valid type and required value. Use E.164 format for PSTN phone numbers.
The call has assistant-forwarded-call, but the destination never ringsVapi initiated the transfer, but the downstream route did not complete itCheck Logs → API Logs for the transfer request and response, then check the provider call detail record and transfer compatibility. For SIP calls, inspect the provider’s REFER or dial behavior.
The assistant transfers when it should continue helpingThe prompt permits broad invocationNarrow the prompt conditions. For tools configured through the API, you can also add a tool rejection plan.
An assistant-to-assistant transfer stalls or behaves like an external callThe transfer call tool is being used for assistant routingUse the handoff tool for transfers between standalone assistants or assistants in a Squad.

For dropped calls, provider diagnostics, and SIP packet checks, follow Troubleshoot call forwarding drops. The call ended reasons reference lists transfer-specific outcomes such as call.in-progress.error-transfer-failed.

API reference

The Create Tool API reference documents the public transfer call fields, destination types, transfer plans, messages, and rejection settings. The Update Assistant API reference documents how to assign reusable tools with model.toolIds.