POST api/AuthVerificationLog/ResendOTP
Request Information
URI Parameters
None.
Body Parameters
AuthVerificationLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | integer |
None. |
|
| OTP | string |
None. |
|
| IsVerified | boolean |
None. |
|
| AuditId | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| LastModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": 2,
"OTP": "sample string 3",
"IsVerified": true,
"AuditId": 5,
"CreatedBy": 6,
"LastModifiedBy": 1
}
application/xml, text/xml
Sample:
<AuthVerificationLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GRFMWebService.Domain"> <CreatedBy>6</CreatedBy> <LastModifiedBy>1</LastModifiedBy> <AuditId>5</AuditId> <Id>1</Id> <IsVerified>true</IsVerified> <OTP>sample string 3</OTP> <UserId>2</UserId> </AuthVerificationLog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |