dynamic transfer to assistant
# support
u
Hey guys, just checking if the dynamic transfer from assistant to assistant ever got resolved, or is in any pipleine to be resolved? https://discord.com/channels/1211482211119796234/1330092161835733013/1339978554217070666 it is still in this doc, and i did retry with no luck (to number this is fine) https://vapi.notion.site/Dynamic-Call-Transfers-A-Step-by-Step-Guide-181008c8393f80d99a36f0965f570cf9 { "destination": { "type": "assistant", "message": "Connecting you to our support assistant.", "assistantName": "SupportAssistant", "transferMode": "rolling-history" } } I would just love to be able to create dynamic assistants on the fly based on use case
v
According to the information I found, direct dynamic transfer from assistant to assistant is not currently supported in Vapi. The recommended workaround is to use squads for transferring between assistants. Here's how to implement it:
Copy code
json
{
    "squad": {
        "members": [
            {
                "assistantId": "your-first-assistant-id",
                "assistantDestinations": [{
                    "type": "assistant",
                    "assistantName": "Support Assistant",
                    "transferMode": "rolling-history",
                    "message": "Connecting you to our support assistant."
                }]
            }
        ]
    }
}
This configuration preserves conversation history during transfers using
rolling-history
. Sources: - [Discord conversation about dynamic transfers](https://discord.com/channels/1211482211119796234/1330092161835733013) - [Vapi Squads documentation](https://docs.vapi.ai/squads)
s
Hey, as per our last discussion, I informed you that Dynamic Transfer from Assistant to Assistant only works within the squad, and the link which we shared is no longer belongs to VAPI documentation. For the latest one, please check our docs.