Skip to content

Commit 6f3d78c

Browse files
Add SIP URI transfer to call features (#767)
1 parent 4f6f6a7 commit 6f3d78c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

fern/calls/call-features.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,21 @@ curl -X POST 'https://aws-us-west-2-production1-phone-call-websocket.vapi.ai/742
129129
}'
130130
```
131131

132+
You can also transfer to a SIP URI:
133+
134+
```bash
135+
curl -X POST 'https://aws-us-west-2-production1-phone-call-websocket.vapi.ai/7420f27a-30fd-4f49-a995-5549ae7cc00d/control'
136+
-H 'content-type: application/json'
137+
--data-raw '{
138+
"type": "transfer",
139+
"destination": {
140+
"type": "sip",
141+
"sipUri": "sip:[email protected]"
142+
},
143+
"content": "Testing transfer call."
144+
}'
145+
```
146+
132147
### 6. Handoff Call
133148
Handoff the call to a different assistant.
134149

0 commit comments

Comments
 (0)