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": "c14a86af-841c-4331-b138-a5a71a792249"
}

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>c14a86af-841c-4331-b138-a5a71a792249</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": "a8bc73f7-94f0-4d4b-aa1d-1bd83d402ef8",
      "GsmNumber": "sample string 2",
      "VerificationStatus": true,
      "CreatedDateTime": "2025-05-23T20:47:48.8814002+03:00"
    },
    {
      "UserId": "a8bc73f7-94f0-4d4b-aa1d-1bd83d402ef8",
      "GsmNumber": "sample string 2",
      "VerificationStatus": true,
      "CreatedDateTime": "2025-05-23T20:47:48.8814002+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-05-23T20:47:48.8814002+03:00</CreatedDateTime>
      <GsmNumber>sample string 2</GsmNumber>
      <UserId>a8bc73f7-94f0-4d4b-aa1d-1bd83d402ef8</UserId>
      <VerificationStatus>true</VerificationStatus>
    </GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
    <GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
      <CreatedDateTime>2025-05-23T20:47:48.8814002+03:00</CreatedDateTime>
      <GsmNumber>sample string 2</GsmNumber>
      <UserId>a8bc73f7-94f0-4d4b-aa1d-1bd83d402ef8</UserId>
      <VerificationStatus>true</VerificationStatus>
    </GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
  </HistoryList>
</GetTwoFactorUserVerificationHistoryResponse>