Table of Contents | ||||
---|---|---|---|---|
|
GET /rooms [public access]
Status | ||||
---|---|---|---|---|
|
Parameters
Parameter | Type | Description |
---|---|---|
|
| Page number for pagination |
|
| Limit for pagination |
...
Code Block |
---|
curl -k -X GET -H "X-AccountCode: vclinic" "https://api.vsee.me/api_v3/rooms" { "data": [{ "slug": "room1", "name": "Room 1", "domain": "demo.vsee.me", "code": "room1_code", "created": 1427922788, "modified": 1427922788 }, ...] } |
POST /rooms
Status | ||||
---|---|---|---|---|
|
Parameters
Parameter | Type | Description |
---|---|---|
|
| Clinic Admin token (app token) |
|
| Clinic’s domain |
|
| (optional) Room code (should be unique) |
|
| (optional) Set this room as default, other rooms will lose default status. |
|
| Room's name |
...
Code Block |
---|
{ "code": 400, "message": "In domain 'vclinic.vsee.me' slug 'uat2' already exists." } |
GET /rooms/:code [public access]
Status | ||||
---|---|---|---|---|
|
Status | ||||
---|---|---|---|---|
|
This API is available in both api v3 and v4
Parameters
(none)
Response
Expand | ||
---|---|---|
| ||
|
...
Expand | ||
---|---|---|
| ||
|
GET /rooms/:code/providers [public access]
Status | ||||
---|---|---|---|---|
|
Response
Code Block |
---|
curl -k -X GET \
-H "X-AccountCode: vclinic" \
"https://api.vsee.me/api_v3/rooms/example-room-code/providers"
{
"data": [
{
"id": "401",
"username": "provider-401",
"code": "",
"subtype": "482",
"first_name": "Jarod",
"last_name": "Sun 401",
"vseeid": "evisitdev+user401",
"photo": null,
"title": "",
"suffix": "",
"status": false,
"short_bio": false
}
]
} |
GET /rooms/:code/providers/:id [public access]
Status | ||||
---|---|---|---|---|
|
Response
Code Block |
---|
curl -k -X GET \ -H "X-AccountCode: vclinic" \ "https://api.vsee.me/api_v3/rooms/ceproom1/providers/826" { "data": { "id": "826", "code": "55de45a2ce384a24ad633301ac1f0144", "first_name": "John", "last_name": "Will", "username": "provider1", "vseeid": "conciergedev+user826", "email": "anton+provider1@vsee.com", "active": true, "title": "Dr.", "suffix": "M.D.", "tos": false, "phone": "334 2222211", "subtype": "482", "status": false, "educational_training": "edu and training...", "professional_interests": "interests...", "personal_interests": "some personal hobby", "short_bio": "...", } } |
GET /rooms/:code/queue [public access]
Status | ||||
---|---|---|---|---|
|
Waiting time = average_visit_time
* before_me
...
length
- total current queue lengthcapacity
- maximum possible queue lengthaverage_visit_time
- time in seconds per patientbefore_me
- patient in the queue before me
POST /users/:id/rooms
Status | ||||
---|---|---|---|---|
|
Associate a room to a user
...
Code Block |
---|
curl --location --request POST 'https://api.vsee.me/api_v3/users/85741/rooms' \ --header 'X-AccountCode: vclinic' \ --header 'X-ApiToken: 83ec6843c3af534c551ab609d869dd82' \ --form 'code=b4vjj'' { "data": [ { "_id": "171", "slug": "provider00102", "name": "provider00102 room", "domain": "clinic.vseepreview.com", "code": "b4vjj", "active": true, "users": "85741", "account_code": "clinic", "provider_ids": [ "85741" ], "public_access_room": true, "modified": { "sec": 1605728974, "usec": 177000 }, "created": { "sec": 1605728974, "usec": 177000 }, "payment": { "consultations": [ { "id": "5fb57ace-4808-4346-ad3c-3348925862c1", "description": "15-min Consultation", "duration": 15, "amount": 0, "group": false, "charge": false, "slots": 1 } ] }, "default": false } ] } |
DELETE /users/:id/rooms/:room_code
Status | ||||
---|---|---|---|---|
|
Remove a room association with a user
...