GET /telehealth_waiting_rooms/{waiting_room_encrypted_id}/check
curl --request GET \
--url https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/checkimport requests
url = "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"telehealth_waiting_room": {
"id": 123,
"person_id": 123,
"organization_id": 123,
"account_id": 123,
"waiting_room_url": "<string>",
"telehealth_url": "<string>",
"consent_policy_url": "<string>",
"cause": "<string>",
"status": "<string>",
"person": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"telephone": null,
"email": "jsmith@example.com",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"born_at": "2023-12-25",
"gender": "<string>",
"avatar_file_name": null,
"avatar_content_type": null,
"avatar_file_size": null,
"avatar_updated_at": null,
"telephone2": "<string>",
"person_attributes": {
"is_under_age": true,
"phone_number": "<string>",
"relationship": "<string>",
"patient_dependent": true,
"person_responsible": "<string>"
},
"account_id": 123,
"address_state_id": null,
"organization_id": 123,
"notes": null,
"deleted_at": null,
"phone_country_id": 123,
"creator_id": null,
"updater_id": null,
"is_migrated": true,
"without_cellphone": true,
"nimbochat_invitation_date": null,
"admission_form": true,
"cirrus_patient_id": null,
"person_token_id": null,
"medical_record": "<string>",
"send_welcome_email": true,
"patient_group_id": null,
"patient_group_ids": [
"<unknown>"
],
"summary_ai": {}
},
"waiting_room_id": null,
"organization": {
"id": 123,
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"owner_id": 123,
"options": {
"allow_patient_sharing": true,
"telehealth": true,
"consultation_needs_consent": true,
"insurance": true,
"employee": true,
"hotel": true,
"more_info": true,
"share_medical_history": true,
"allow_patient_edit": true,
"enable_custom_record": true,
"allow_consultation_edit": true,
"last_patient_mrn": 123,
"prefix_patient_mrn": "<string>",
"only_existing_patient": true,
"payment_per_organization": true,
"include_physician_section": true,
"enable_ai_features": true,
"signature": {
"email": "jsmith@example.com",
"password": "<string>",
"document_id": 123
}
},
"tax_attributes": {},
"kind": "<string>",
"invoice_items_count": 123,
"number_of_physicians_option": "<string>",
"slug": "<string>",
"landing_page_info": {},
"integrations": {},
"telehealth_request_slug": "<string>",
"custom_domain": null,
"main_organization_schedule_id": null,
"referral_token": "<string>",
"waiting_room_configuration": {},
"onboarding_info": {
"achievements": [
{
"id": "<string>",
"title": "<string>"
}
],
"organization_type": "<string>"
},
"configuration": {},
"sensitive_information": {}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"people_in_front": 123,
"metadata": {
"person_created": true
},
"slug": null,
"waiting_room": null,
"consultation_form_url": null,
"show_split_screen": true,
"organizational_logo": "<string>",
"high_priority": true
},
"meta": {
"people_in_front": 123,
"waiting_time": 123
}
}Telehealth
GET /telehealth_waiting_rooms/{waiting_room_encrypted_id}/check
GET
/
telehealth_waiting_rooms
/
{waiting_room_encrypted_id}
/
check
GET /telehealth_waiting_rooms/{waiting_room_encrypted_id}/check
curl --request GET \
--url https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/checkimport requests
url = "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.test/telehealth_waiting_rooms/{waiting_room_encrypted_id}/check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"telehealth_waiting_room": {
"id": 123,
"person_id": 123,
"organization_id": 123,
"account_id": 123,
"waiting_room_url": "<string>",
"telehealth_url": "<string>",
"consent_policy_url": "<string>",
"cause": "<string>",
"status": "<string>",
"person": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"telephone": null,
"email": "jsmith@example.com",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"born_at": "2023-12-25",
"gender": "<string>",
"avatar_file_name": null,
"avatar_content_type": null,
"avatar_file_size": null,
"avatar_updated_at": null,
"telephone2": "<string>",
"person_attributes": {
"is_under_age": true,
"phone_number": "<string>",
"relationship": "<string>",
"patient_dependent": true,
"person_responsible": "<string>"
},
"account_id": 123,
"address_state_id": null,
"organization_id": 123,
"notes": null,
"deleted_at": null,
"phone_country_id": 123,
"creator_id": null,
"updater_id": null,
"is_migrated": true,
"without_cellphone": true,
"nimbochat_invitation_date": null,
"admission_form": true,
"cirrus_patient_id": null,
"person_token_id": null,
"medical_record": "<string>",
"send_welcome_email": true,
"patient_group_id": null,
"patient_group_ids": [
"<unknown>"
],
"summary_ai": {}
},
"waiting_room_id": null,
"organization": {
"id": 123,
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"owner_id": 123,
"options": {
"allow_patient_sharing": true,
"telehealth": true,
"consultation_needs_consent": true,
"insurance": true,
"employee": true,
"hotel": true,
"more_info": true,
"share_medical_history": true,
"allow_patient_edit": true,
"enable_custom_record": true,
"allow_consultation_edit": true,
"last_patient_mrn": 123,
"prefix_patient_mrn": "<string>",
"only_existing_patient": true,
"payment_per_organization": true,
"include_physician_section": true,
"enable_ai_features": true,
"signature": {
"email": "jsmith@example.com",
"password": "<string>",
"document_id": 123
}
},
"tax_attributes": {},
"kind": "<string>",
"invoice_items_count": 123,
"number_of_physicians_option": "<string>",
"slug": "<string>",
"landing_page_info": {},
"integrations": {},
"telehealth_request_slug": "<string>",
"custom_domain": null,
"main_organization_schedule_id": null,
"referral_token": "<string>",
"waiting_room_configuration": {},
"onboarding_info": {
"achievements": [
{
"id": "<string>",
"title": "<string>"
}
],
"organization_type": "<string>"
},
"configuration": {},
"sensitive_information": {}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"people_in_front": 123,
"metadata": {
"person_created": true
},
"slug": null,
"waiting_room": null,
"consultation_form_url": null,
"show_split_screen": true,
"organizational_logo": "<string>",
"high_priority": true
},
"meta": {
"people_in_front": 123,
"waiting_time": 123
}
}⌘I