Skip to main content
POST
/
verify
/
validate
Verify OTP
curl --request POST \
  --url https://one.telepie.com/verify/validate \
  --header 'apikey: <api-key>'
Upon successful invocation, it confirms their identity for secure access. Successful validation grants authorized users access to the intended functionality, bolstering system security by ensuring only valid OTPs are accepted.

Request Body Parameters

verifyId
string
required
The Verify ID which was sent in the Generate OTP API response.
otp
string
required
One Time Password which was sent to the users to validate them.
 curl -G - /v1/verify/validate \
  -H 'apikey':'string'
  -H "Content-Type: application/json" \
  -d '{
     "verifyId": "33888968-XXXX-XXXX-XXXX-3010e0069668",
     "otp": "XXXXXX" }'