POST api/PatientSecurityVerification
Submits the request for security verification.
Request Information
URI Parameters
None.
Body Parameters
Model used to verify extra security of the patient at first time login.
PatientSecurityVerificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Username |
User name to be used for first time login (Required). |
string |
None. |
| Password |
Password to be used for first time login (Required). |
string |
None. |
| AccountNumber |
Account number in which patient is registered (Required). |
string |
None. |
| DateOfBirth |
Date of birth of the patient for verification (Required). |
date |
None. |
| ZipCode |
Zip code of the patient for verification (Required). |
string |
None. |
| NewUsername |
New user name to be used by the patient after first time login (Required). |
string |
None. |
| NewPassword |
New password to be used by the patient after first time login (Required). |
string |
None. |
Request Formats
application/json, text/json
{
"Username": "sample string 1",
"Password": "sample string 2",
"AccountNumber": "sample string 3",
"DateOfBirth": "2026-05-31T18:56:24.4009597+00:00",
"ZipCode": "sample string 5",
"NewUsername": "sample string 6",
"NewPassword": "sample string 7"
}
application/xml, text/xml
<PatientSecurityVerificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientRegistration"> <AccountNumber>sample string 3</AccountNumber> <DateOfBirth>2026-05-31T18:56:24.4009597+00:00</DateOfBirth> <NewPassword>sample string 7</NewPassword> <NewUsername>sample string 6</NewUsername> <Password>sample string 2</Password> <Username>sample string 1</Username> <ZipCode>sample string 5</ZipCode> </PatientSecurityVerificationModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
PatientSecurityVerificationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Username |
User name to be used for first time login (Required). |
string |
None. |
| Password |
Password to be used for first time login (Required). |
string |
None. |
| AccountNumber |
Account number in which patient is registered (Required). |
string |
None. |
| DateOfBirth |
Date of birth of the patient for verification (Required). |
date |
None. |
| ZipCode |
Zip code of the patient for verification (Required). |
string |
None. |
| NewUsername |
New user name to be used by the patient after first time login (Required). |
string |
None. |
| NewPassword |
New password to be used by the patient after first time login (Required). |
string |
None. |
Response Formats
application/json, text/json
{
"Username": "sample string 1",
"Password": "sample string 2",
"AccountNumber": "sample string 3",
"DateOfBirth": "2026-05-31T18:56:24.5936517+00:00",
"ZipCode": "sample string 5",
"NewUsername": "sample string 6",
"NewPassword": "sample string 7"
}
application/xml, text/xml
<PatientSecurityVerificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.PatientRegistration"> <AccountNumber>sample string 3</AccountNumber> <DateOfBirth>2026-05-31T18:56:24.5936517+00:00</DateOfBirth> <NewPassword>sample string 7</NewPassword> <NewUsername>sample string 6</NewUsername> <Password>sample string 2</Password> <Username>sample string 1</Username> <ZipCode>sample string 5</ZipCode> </PatientSecurityVerificationModel>