data.token.token
) look like this 66bcd0acff324e8a44992d9596b5d361
. User's ID (data.id
) will also be used as member_id
later in Step 3.curl --location 'https://api.vseepreview.com/vc/stable/api_v3/users/sso?fields=vsee' \
--header 'X-AccountCode: sandbox' \
--header 'X-ApiKey: 8acd6ac0a7193ad17f56ce694e94df2f' \
--header 'X-ApiSecret: 8ece42756425bb1ec31aee0f29d02a87' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "VSee Edward",
"last_name": "Patient Sandbox",
"type": 200,
"email": "edward+002.patient.sandbox@vseelab.com",
"code": "edward+002.patient.sandbox@vseelab.com"
}'
X-ApiToken
header field. You will get an intake ID in the response (data.id)
, e.g. 61165a8e-d8cc-47da-bd8e-597d64457b1f
curl --location 'https://api.vseepreview.com/vc/stable/api_v3/intakes' \
--header 'X-AccountCode: sandbox' \
--header 'X-ApiToken: {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": 1,
"room_code": "sandbox",
"reason_for_visit": "followup"
}'
X-ApiToken
header field and intake_id
from Step 2. You will get a visit ID in the response (data.id
, e.g. 67258
curl --location 'https://api.vseepreview.com/vc/stable/api_v3/visits/add_walkin' \
--header 'X-AccountCode: sandbox' \
--header 'X-ApiToken: {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"provider_id": "181883",
"room_code": "sandbox",
"intake_id": "{{intake_id}}"
}'
Your Clinic Domain URL: https://sandbox.vseepreview.com/vc/stable
Next URL: /visits/start/{{visit_id}}