danthemktman
11/18/2024, 11:28 PMVapi
11/18/2024, 11:31 PMVapi
11/18/2024, 11:31 PMCaller ID
or similar.
If you're using VAPI's Voice API, you might need to set the from
parameter in your transfer action to the customer's number. This way, when the call is transferred, the receiving party will see the original caller's number instead of the VAPI number.
Here's a general example of how you might structure the transfer action in your VAPI code:
json
{
"action": "transfer",
"from": "<Original Caller's Number>",
"destination": {
"type": "phone",
"number": "<Desired Transfer Number>"
}
}
Replace <Original Caller's Number>
with the variable that holds the customer's number and <Desired Transfer Number>
with the number you want to transfer the call to.
If you need more specific guidance or if there's a particular part of the setup you're unsure about, please provide additional details so I can assist you further.Vapi
11/18/2024, 11:31 PMdanthemktman
11/18/2024, 11:37 PMShubham Bajaj
11/19/2024, 10:02 AMdanthemktman
11/20/2024, 7:02 PMdanthemktman
11/20/2024, 7:02 PM