POST api/TwoFactor/GetTwoFactorUserVerification

Request Information

URI Parameters

None.

Body Parameters

GetTwoFactorUserVerificationRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "4f9b4610-0a53-4805-bf72-fe4104c8391d"
}

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>4f9b4610-0a53-4805-bf72-fe4104c8391d</UserId>
</GetTwoFactorUserVerificationRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetTwoFactorUserVerificationResponse
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

IsGsmVerified

boolean

None.

IsTwoFactor

boolean

None.

GsmVerifiedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": "32380861-83e4-48df-a2f5-e3ab8c5b3112",
  "IsGsmVerified": true,
  "IsTwoFactor": true,
  "GsmVerifiedDate": "2025-09-14T21:26:36.6366716+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-09-14T21:26:36.6366716+03:00</GsmVerifiedDate>
  <IsGsmVerified>true</IsGsmVerified>
  <IsTwoFactor>true</IsTwoFactor>
  <UserId>32380861-83e4-48df-a2f5-e3ab8c5b3112</UserId>
</GetTwoFactorUserVerificationResponse>