Telemedicine Queries

These queries allow you to interact with telemedicine data.

videoRoomToken

Returns: String

Arguments

ArgumentTypeDescription
appointmentIdrequiredID!ID of the appointment
Example Query
query($appointmentId: ID!) {
videoRoomToken(appointmentId: $appointmentId) {
id
# Add other fields you need
}
}
Variables
{
"appointmentId": "1"
}