Device Table | ||
---|---|---|
Device category | Device name | Device type |
Pulse, Oximeter | Pulse Oximeter PO3M | ihealth_po_po3 |
Scale | Scale HS2S | ihealth_scale_hs22 |
Active Minutes, Steps | Apple Health | applehealth |
Samsung Health | samsunghealth | |
Blood Pressure | Blood Pressure RPM-BP100 | welchallync_bp_bp100 |
Glucose Meters | Glucose Meters Gluco+/BG5S | ihealth_bg_bg5s |
Thermometer | Thermometer PT3SBT | ihealth_thermometer_pt3sbt |
GET /users/{user_id}/devices
Parameters
Parameter | Type | Description |
---|---|---|
|
| |
|
| |
|
| |
|
| Device unique ID |
|
| Device name (in device table) |
|
| Device type (in device table) |
...
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
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." } |
POST /users/:id/rooms
Associate a room to a user
...