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

Reject call

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

Reject an incoming SIP call. Send a required SIP rejection status_code between 300 and 699.

ParametersExpand Collapse
session_id: String
status_code: Integer

SIP rejection status sent to the caller. This field is required.

minimum300
maximum699

Reject call

require "openai"

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

result = openai.live.sessions.reject("session_id", status_code: 486)

puts(result)
Returns Examples