There are the routes of the API.
/phone: Index of Phone routes/email: Index of Email routes/phone/validateContent-Type: application/json
X-Internal-Token: <TOKEN_HERE>
{
"phone": ""
}
curl -X GET \
-H "Content-Type: application/json" \
-H "X-Internal-Token: TOKEN_HERE" \
-d '{"phone": "11999999999"}' \
BASE_URL/phone/validate
/email/validateContent-Type: application/json
X-Internal-Token: <TOKEN_HERE>
{
"email": ""
}
curl -X GET \
-H "Content-Type: application/json" \
-H "X-Internal-Token: TOKEN_HERE" \
-d '{"email": "teste@gmail.com"}' \
BASE_URL/email/validate