POST
/
api
/
verify_user
/
verify_code
curl --location --request POST 'http://127.0.0.1:8000/api/verify_user/verify_code' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'


  "message": "Authentication Complete",
  "data": {
      "auth_token": "66f70bee9b72dc83f299c2ed28c5a17099df078e"
  }

    

body

phone
string

Phone number of the consumer (end-user).

verification_code
string

OTP Verification code.

curl --location --request POST 'http://127.0.0.1:8000/api/verify_user/verify_code' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'


  "message": "Authentication Complete",
  "data": {
      "auth_token": "66f70bee9b72dc83f299c2ed28c5a17099df078e"
  }