For the complete documentation index, see llms.txt. This page is also available as Markdown.

Mobile Verification With OTP

Mobile Number Verification API enables businesses to verify the ownership and authenticity of a mobile number through OTP-based validation. It helps enhance security, prevent fraud, and ensure reliable communication by confirming that the user has access to the provided mobile number.

mobile_verify_with_otp

POST https://secctrl.tutelar.io/api/v1/kyc/utility/mobile_verify_with_otp

Post parameters For description is given below,

Post Parameter
Type
Is Mandatory
Description

mobileNumber

String

Yes

Mobile Number

Sample Post Parameter

{
    "mobileNumber": "9360204090"
}

{
    "success": true,
    "code": 200,
    "message": "The request is being processed. Please wait for completion.",
    "reference_id": "2c81c690-9966-48c1-91a6-b18956398425",
    "status": "in_progress",
    "result": {
        "message": "Otp Sent your mobile number successfully",
        "requestId": "telecom_dgda7851a6"
    },
    "requested_at": "2026-06-03T14:24:53.897Z"
},

{
    "success": true,
    "code": 200,
    "message": "The request is being processed. Please wait for completion.",
    "reference_id": "005d1731-85dd-4ad5-b8ff-eb67a7d2e42d",
    "status": "in_progress",
    "requested_at": "2026-05-18T14:17:40.481Z"
}

Submit OTP

GET https://secctrl.tutelar.io/api/v1/kyc/verify/mobile/otp

Post parameters For description is given below,

Query Parameter
Type
Is Mandatory
Description

referenceId

String

Yes

Document reference id

otp

String

Yes

OTP sent your mobile number

requestId

String

Yes

Unique ID received in the Initiate OTP response, required for OTP verification.

Sample Post Parameter

Last updated