POST api/PasswordResetRequest
Used to reset the password of the patient.
Request Information
URI Parameters
None.
Body Parameters
Model used to reset the password.
PasswordResetRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientEmailAddress |
Email address of the patient (Required). |
string |
None. |
| AccountNumber |
Account number to which patient is associated. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientEmailAddress": "sample string 1",
"AccountNumber": "sample string 2"
}
application/xml, text/xml
Sample:
<PasswordResetRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Accounts"> <AccountNumber>sample string 2</AccountNumber> <PatientEmailAddress>sample string 1</PatientEmailAddress> </PasswordResetRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PasswordResetRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientEmailAddress |
Email address of the patient (Required). |
string |
None. |
| AccountNumber |
Account number to which patient is associated. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PatientEmailAddress": "sample string 1",
"AccountNumber": "sample string 2"
}
application/xml, text/xml
Sample:
<PasswordResetRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.Accounts"> <AccountNumber>sample string 2</AccountNumber> <PatientEmailAddress>sample string 1</PatientEmailAddress> </PasswordResetRequestModel>