API
Assistant

Assistant room

To start Assistant Session you should execute query:

query JoinAssistantRoom {
  joinAssistantRoom(platform: "RENTINVESTO") {
    serverUrl
    jwt
  }
}

after that you will receive serverUrl and jwt which you should use to connect to Assistant Room using LiveKit SDK.

{
    "data": {
        "joinAssistantRoom": {
            "serverUrl": "wss://assistant.rentinvesto.com",
            "jwt": "eyJhbG"
        }
    }
}