Qikberry API Docs
SMSRCS Business MessagingVMN MessagingVerify
SMSRCS Business MessagingVMN MessagingVerify
Qikberry.AI
App
  1. Verify
  • Verify
  • Generate OTP
    POST
  • Validate OTP
    POST
SMSRCS Business MessagingVMN MessagingVerify
SMSRCS Business MessagingVMN MessagingVerify
Qikberry.AI
App
  1. Verify

Validate OTP

POST
https://rest.qikberry.ai/v1/verify/validate
This endpoint allows you to validate OTP by sending an HTTP POST request.
In this validation function, It validate the provided verify_id against the OTP id from the database and return the response. if OTP is valid then only user will allow to do proceed. In this validation process, the system compares the provided verify_id with the corresponding OTP record stored in the database. If the OTP is valid and matches the record, the user is successfully verified and allowed to proceed. Otherwise, an error response is returned, indicating that the OTP is invalid or expired.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthenticated
🟠400Validation Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://rest.qikberry.ai/v1/verify/validate' \
--header 'Authorization: Bearer 4e775c43a004db6a16bccc69032bXXXX' \
--header 'Content-Type: application/json' \
--data-raw '{
    "verify_id": "0c95d298-7a10-422b-a8f6-1a8e982XXXXXX",
    "otp": "fYK9"
}'
Response Response Example
200 - Verified Successfully
{
    "verify_id": "73b6586e-84ac-4ba9-a5ab-c31371c6dce8",
    "message": "OTP verified successfully"
}
Modified at 2025-11-16 02:46:14
Previous
Generate OTP
Built with