KYC | Onboarding Completed

For KYC completion, we promptly trigger the "KYC Webhook" as soon as the user completes the KYC. Below is an example curl for each webhook at the offering level.

curl --location `${WEBHOOK_URL}` \
--header 'apikey: ${YOUR_API_KEY}' \
--header 'Content-Type: application/json' \
--data-raw '{
   "Name": "Siddhant",
    "Email": "[email protected]",
    "Phone": "+911234567890",
    "Product": "LOM",
    "Link of Product": "siddhu.rpy.club/g/boMCYvG1dk",
    "Time": "2024-12-19T22:34:25.976Z",
    "event_type": "kyc",
    "kyc_details": [
      {
        "question": "Enter your PAN Number",
        "answer": "ABCDE"
      },
      {
        "question": "Full Name as per PAN Card",
        "answer": "Ram Sharma"
      },
      {
        "question": "Date of Birth as per PAN Card",
        "answer": "1991-07-15 00:00:00"
      },
      {
        "question": "State",
        "answer": "Rajasthan"
      }
    ],
    "kyc_type": "Post"
  }'

Last updated