Verify OTP Forgot Password
Developing
Request
Body Params application/json
{
"phone_number": "0393221191",
"otp": "123456",
"request_code": "6_bNOmh8ueweVh5arsku21wlNl7PegqJFFqxaFxvkQ=="
}
Request Code Samples
curl --location --request POST 'http://petfen-account.local.com:8081/api/v1/forgot-password/verify-otp' \
--header 'X-Auth-Service: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"phone_number": "0393221191",
"otp": "123456",
"request_code": "6_bNOmh8ueweVh5arsku21wlNl7PegqJFFqxaFxvkQ=="
}'
Responses
application/json {
"error": {
"code": 400,
"message": "User not found",
"errors": null
}
}
Modified at 2025-10-09 08:23:54