Phone Number Verification
This API allows you to verify a user's phone number by sending a verification code via SMS or voice call, and checking whether the user has entered the correct code.
Phone Number Verification
POST
https://api.getspendo.com/gateway/api/v1/verify/phoneNumber
Headers
Name
Type
Description
apiKey*
String
The API key that you get from spendo's dashboard.
Request Body
Name
Type
Description
from*
String
phoneNumber*
String
The phone number to be verified, represented as a string with the country code and without any spaces or special characters.
{
"success": true,
"message": "Request Succesful",
"code": 0,
"data": null
}
Take a look at how you might call this method using our official libraries, or via curl
:
curl --location --request POST 'https://api.getspendo.com/gateway/api/v1/verify/phoneNumber' \
--header 'apiKey: test_api_key' \
--header 'Content-Type: application/json' \
--data-raw '{
"from": "string",
"phoneNumber": "string"
}'
Last updated
Was this helpful?