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
NameDescriptionTypeAdditional 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

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "AccountNumber": "sample string 3",
  "DateOfBirth": "2024-04-26T14:04:03.5774708-04:00",
  "ZipCode": "sample string 5",
  "NewUsername": "sample string 6",
  "NewPassword": "sample string 7"
}

application/xml, text/xml

Sample:
<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>2024-04-26T14:04:03.5774708-04: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:

Sample not available.

Response Information

Resource Description

PatientSecurityVerificationModel
NameDescriptionTypeAdditional 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

Sample:
{
  "Username": "sample string 1",
  "Password": "sample string 2",
  "AccountNumber": "sample string 3",
  "DateOfBirth": "2024-04-26T14:04:03.5930984-04:00",
  "ZipCode": "sample string 5",
  "NewUsername": "sample string 6",
  "NewPassword": "sample string 7"
}

application/xml, text/xml

Sample:
<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>2024-04-26T14:04:03.5930984-04: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>