User Verify OTP List
GET /user/verify-otp/
The GET /user/verify-otp/
endpoint retrieves the details required for OTP verification using the provided email address and OTP code.
Parameters
Name
Type
Description
No parameters required for this endpoint.
Responses
Success Response (200)
A list containing the OTP verification details.
Field
Type
Description
email
string (email)
The email address associated with the OTP.
otp_code
string
The OTP code entered by the user.
Example Response Body
[
{
"email": "user@example.com",
"otp_code": "123456"
}
]
Last updated