post http://api.pandascrow.io/sandbox/index/user/resend/otp
This endpoint would allow you to verify the email and SMS of your newly registered account with Pandascrow.
[POST] {{baseurl}}/sandbox/index/user/resend/otp
Pandascrow Users - Resend OTP (Phone)
To request a resend of OTP, you'll need to provide the userID to the endpoint provided as a post service.
Param | Required? | Description | type |
---|---|---|---|
userID | Yes | provide the userID for the current user requesting OTP | Integer |
code | Yes | provide the OTP code sent to your mobile number | String |
API Object
{
"status": 200,
"data": {
"userID": 1,
"message": "verification code has be resent successfully"
}
}
curl -L -X POST '{{baseurl}}/sandbox/index/user/resend/otp' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'Appid: appid'