Calls ===== Initiate a Call --------------- Initiate an audio or video call: .. code-block:: python call = client.calls.initiate_call( to="+255788811191", call_type="video", # or "audio" room="my-room" ) Get Call History ---------------- Get call history: .. code-block:: python history = client.calls.get_history() print(f"History: {history}") End Call -------- End an active call: .. code-block:: python client.calls.end_call(call_id="call_id")