Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Transfer call

live.sessions.refer(session_id, **kwargs) -> void
POST/live/sessions/{session_id}/refer

Transfer a SIP call to another destination. Supply a nonblank target_uri for the SIP Refer-To header.

ParametersExpand Collapse
session_id: String
target_uri: String

Nonblank URI for the SIP Refer-To header, such as tel:+14155550123 or sip:agent@example.com.

minLength1

Transfer call

require "openai"

openai = OpenAI::Client.new(api_key: "My API Key")

result = openai.live.sessions.refer("session_id", target_uri: "tel:+14155550123")

puts(result)
Returns Examples