POST api/TwoFactor/GetTwoFactorUserVerificationHistory
Request Information
URI Parameters
None.
Body Parameters
GetTwoFactorUserVerificationHistoryRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "ab8c461c-8a2b-4d34-8794-74bc6c9b86d9"
}
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>ab8c461c-8a2b-4d34-8794-74bc6c9b86d9</UserId> </GetTwoFactorUserVerificationHistoryRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTwoFactorUserVerificationHistoryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| HistoryList | Collection of HistoryItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"HistoryList": [
{
"UserId": "61f41ef1-e09c-4a1e-8a19-c1179c304be8",
"GsmNumber": "sample string 2",
"VerificationStatus": true,
"CreatedDateTime": "2025-10-30T21:00:47.0669183+03:00"
},
{
"UserId": "61f41ef1-e09c-4a1e-8a19-c1179c304be8",
"GsmNumber": "sample string 2",
"VerificationStatus": true,
"CreatedDateTime": "2025-10-30T21:00:47.0669183+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-10-30T21:00:47.0669183+03:00</CreatedDateTime>
<GsmNumber>sample string 2</GsmNumber>
<UserId>61f41ef1-e09c-4a1e-8a19-c1179c304be8</UserId>
<VerificationStatus>true</VerificationStatus>
</GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
<GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
<CreatedDateTime>2025-10-30T21:00:47.0669183+03:00</CreatedDateTime>
<GsmNumber>sample string 2</GsmNumber>
<UserId>61f41ef1-e09c-4a1e-8a19-c1179c304be8</UserId>
<VerificationStatus>true</VerificationStatus>
</GetTwoFactorUserVerificationHistoryResponse.HistoryItem>
</HistoryList>
</GetTwoFactorUserVerificationHistoryResponse>