...
Step 1: Obtain patient access token from POST /users/sso API API call
The API will return you the token (data.token.token) look like this 66bcd0acff324e8a44992d9596b5d361
.
...
Step 1: Obtain patient access token from from POST /users/sso API API call
The API will return you the token (data.token.token) look like this 66bcd0acff324e8a44992d9596b5d361
. User's ID (data.id
) will also be used as member_id
later in Step 3.
Step 2: Create intake object via via POST /intakes API
Use the SSO token from Step 1 in the X-ApiToken
header field. You will get an intake ID in the response (data.id
), e.g. 61165a8e-d8cc-47da-bd8e-597d64457b1f
Step 3: Create a walkin visit via via POST /visits/add_walkin API API
Use SSO token from Step 1 in the X-ApiToken
header field and intake_id from Step 2. You will get a visit ID in the response (data.id
, e.g. 67258
...
Step 1: Obtain patient access token from from POST /users/sso API API call
The API will return you the token (data.token.token) look like this 66bcd0acff324e8a44992d9596b5d361
. User's ID (data.id
will also be used as member_id later in Step 3.
Step 2: Create intake object via via POST /intakes API API
Use the SSO token from Step 1 in the X-ApiToken header field. You will get an intake ID in the response (data.id
), e.g. 61165a8e-d8cc-47da-bd8e-597d64457b1f
Step 3: Create a scheduled appointment visit via POST /visits API API
Use the SSO token from Step 1 in the X-ApiToken header field and intake_id from Step 2. You will get a visit ID in the response (data.id
) e.g. 67258
...
Step 1: Obtain provider access token from from POST /users/sso API call
The API will return you the token (data.token.token
) look like this 66bcd0acff324e8a44992d9596b5d361
.
...
Step 1: Obtain provider access token from from POST /users/sso API call
The API will return you the token (data.token.token) look like this 66bcd0acff324e8a44992d9596b5d361
.
Step 2: Create a waiting room in the clinic via POST /rooms API API call
The API will return you the room ID and room code (data.id
, data.code
). If the room already exists, it will return error 400.
Step 3: Assign the newly created provider to the waiting room via via POST /users/:id/rooms API API call
Step 4: Redirect the provider to their dashboard. The provider will be assigned to a room already and be able to see patients from that room.
...
See EMR API
Pharmacy API
Visits API
See Visit API
...