Prefer using email? Say hi at hello@moveshelf.com
## README: this example shows how we can delete a session from Moveshelf
# using the Moveshelf API.
# Delete a session by ID
session_id = "<sessionId>" # session["id"]
result = api.deleteSession(session_id)
if result:
print(f"Session {session_id} deleted successfully")
else:
print(f"Failed to delete session {session_id}")