Reject call
live.sessions.reject(strsession_id, SessionRejectParams**kwargs)
POST/live/sessions/{session_id}/reject
Reject an incoming SIP call. Send a required SIP rejection status_code between 300 and 699.
Reject call
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("OPENAI_API_KEY"), # This is the default and can be omitted
)
client.live.sessions.reject(
session_id="session_id",
status_code=486,
)