POST api/TwoFactor/GetTwoFactorUserVerification
Request Information
URI Parameters
None.
Body Parameters
GetTwoFactorUserVerificationRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "f7c869f4-ea98-491f-89d5-c472534ed8d3"
}
application/xml, text/xml
Sample:
<GetTwoFactorUserVerificationRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <UserId>f7c869f4-ea98-491f-89d5-c472534ed8d3</UserId> </GetTwoFactorUserVerificationRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTwoFactorUserVerificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| IsGsmVerified | boolean |
None. |
|
| IsTwoFactor | boolean |
None. |
|
| GsmVerifiedDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": "5dd1e1c7-3e52-49d5-8131-19b82fca3064",
"IsGsmVerified": true,
"IsTwoFactor": true,
"GsmVerifiedDate": "2025-10-30T21:00:47.6124291+03:00"
}
application/xml, text/xml
Sample:
<GetTwoFactorUserVerificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <GsmVerifiedDate>2025-10-30T21:00:47.6124291+03:00</GsmVerifiedDate> <IsGsmVerified>true</IsGsmVerified> <IsTwoFactor>true</IsTwoFactor> <UserId>5dd1e1c7-3e52-49d5-8131-19b82fca3064</UserId> </GetTwoFactorUserVerificationResponse>