POST api/auth/verify-otp

Request Information

URI Parameters

None.

Body Parameters

VerifyOtpRequest
NameDescriptionTypeAdditional information
Mobile

string

None.

Code

string

None.

FullName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "mobile": "sample string 1",
  "code": "sample string 2",
  "fullName": "sample string 3"
}

application/xml, text/xml

Sample:
<VerifyOtpRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos">
  <Code>sample string 2</Code>
  <FullName>sample string 3</FullName>
  <Mobile>sample string 1</Mobile>
</VerifyOtpRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'VerifyOtpRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.