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

Onsite Verification

In onsite verification will directly interact with the end user to collect the required proofs for verification purposes.

onsite_document_verification

POST https://secctrl.tutelar.io/api/v1/kyc/vision/onsite_document_verification

Post parameters description is given below,

Post Parameter
Type
Is Mandatory
Description

email

String

Yes

Email Address

country

String

Yes

Country Code

language

String

Yes

Language

callback_url

String

No

Webhook Url to get response

Sample Post Parameters

{
    "email": "xxxxxxx.@gmail.com",
    "country": "IN",
    "language": "EN",
    "callback_url": "https://secctrl.tutelar.io/api/v1/callback"
}
{
    "success": true,
    "code": 200,
    "message": "The request is being processed. Please wait for completion.",
    "reference_id": "1a6f71f9-8cd8-4510-922f-83723dc637c3",
    "status": "in_progress",
    "result": {
        "verification_status": "pending",
        "verification_url": "https://app.shuftipro.com/verification/process/cUYmvxwtMAdjtqXNmll3ErdNa8V22h77FpBjbbyiYUcU6tlda2BcWIG2l1Q4fiqw"
    },
    "requested_at": "2023-01-12T08:53:04.074Z"
}

Last updated