RelayCallleave_roomCopy page|View as Markdown|Open in Claude|More actionsLeave the current room. Parameters Returns dict — Server response confirming the leave. Example from signalwire.relay import RelayClientclient = RelayClient( project="your-project-id", token="your-api-token", contexts=["default"],)@client.on_callasync def handle_call(call): await call.answer() # Join a room await call.join_room("meeting-room-1") # Later, leave the room await call.leave_room() await call.hangup()client.run()