POST api/TwoFactor/GetTwoFactorUserVerificationHistory

Request Information

URI Parameters

None.

Body Parameters

GetTwoFactorUserVerificationHistoryRequest
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "e6c11485-89e5-46cb-89e9-8da3195378f5"
}

application/xml, text/xml

Sample:
<GetTwoFactorUserVerificationHistoryRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request">
  <UserId>e6c11485-89e5-46cb-89e9-8da3195378f5</UserId>
</GetTwoFactorUserVerificationHistoryRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetTwoFactorUserVerificationHistoryResponse
NameDescriptionTypeAdditional information
HistoryList

Collection of HistoryItem

None.

Response Formats

application/json, text/json

Sample:
{
  "HistoryList": [
    {
      "UserId": "c95c4a73-0126-4463-9823-c75ceaf9ddd2",
      "GsmNumber": "sample string 2",
      "VerificationStatus": true,
      "CreatedDateTime": "2025-09-14T21:26:36.0916759+03:00"
    },
    {
      "UserId": "c95c4a73-0126-4463-9823-c75ceaf9ddd2",
      "GsmNumber": "sample string 2",
      "VerificationStatus": true,
      "CreatedDateTime": "2025-09-14T21:26:36.0916759+03:00"
    }
  ]
}

application/xml, text/xml

Sample:
<GetTwoFactorUserVerificationHistoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
  <HistoryList>
    <GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
      <CreatedDateTime>2025-09-14T21:26:36.0916759+03:00</CreatedDateTime>
      <GsmNumber>sample string 2</GsmNumber>
      <UserId>c95c4a73-0126-4463-9823-c75ceaf9ddd2</UserId>
      <VerificationStatus>true</VerificationStatus>
    </GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
    <GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
      <CreatedDateTime>2025-09-14T21:26:36.0916759+03:00</CreatedDateTime>
      <GsmNumber>sample string 2</GsmNumber>
      <UserId>c95c4a73-0126-4463-9823-c75ceaf9ddd2</UserId>
      <VerificationStatus>true</VerificationStatus>
    </GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
  </HistoryList>
</GetTwoFactorUserVerificationHistoryResponse>