Used to generate user access token. Username and password belongs to the patient/provider created from patient/provider portal.Field | Type | Description |
---|
username | string | Required. Email of Provider/Patient. |
password | string | Required. Password of Provider/Patient. |
redirectParam | string | Optional. Redirct URL for Patient/Provider portal. |
{
"username": {{email}},
"password":{{password}},
"redirectParam": {{url}}
}
Example Success Response:
Status: 200{
"userAccessToken": {{userAccessToken}},
}
Example Failure Response:
Status: 400 or 500{
"error": true,
"message": "Request Failed. {{error_message}}"
}