How to transfer call with extension
# general-english
b
Hi folks , how to transfer call with Extension? tried this way
Copy code
[ "+155544422211,102",
   "+155544422211,103" ]
but it doesn't work
a
I am interested in this answer from @User
maybe somethng like this? not sure if this would work with VAPI: +155544422211...102
b
did u try this somewhere else ?
s
@bauman you need to add your extension this way.
Copy code
json
  "destinations": [
    {
      "type": "number",
      "number": "your-number-here",
      "extension": "your-ext",
      "numberE164CheckEnabled": true
    }
  ]
a
AWESOME thanks @Shubham Bajaj
3 Views