CALLBACK

SNOSTATUSCODEDESCRIPTION
1200Successful Verification.
2201Transaction failed and refunded successfully.
3202Transaction failure but amount not debited.
4422Transaction failure and amount not refunded.

SUCCESS CALLBACK

{
  "event": "BULK_VERIFY_RC",
  "param": {
    "status": true,
    "statuscode": 200,
    "message": "RC Detail feteched suceessfully",
    "reference_id": 20371415,
    "data": {
      "client_id": "rc_NmKsuglfgApaJXuhFWMk",
      "rc_number": "HR26CT0121",
      "registration_date": "2015-12-16",
      "owner_name": "ABHINAV JAIN",
      "father_name": "ABHEY JAIN",
      "present_address": "A-0903, THE RESIDENCE, SECTOR 33, Gurgaon-122001",
      "permanent_address": "A-0903, THE RESIDENCE, SECTOR 33, Gurgaon-122001",
      "mobile_number": "",
      "vehicle_category": "LMV",
      "vehicle_chasi_number": "MA1YU2HHUF6K12744",
      "vehicle_engine_number": "HHF4K21436",
      "maker_description": "MAHINDRA & MAHINDRA LIMITED",
      "maker_model": "XUV500",
      "body_type": "SALOON",
      "fuel_type": "DIESEL",
      "color": "NPERLWHT",
      "norms_type": "EURO 4",
      "fit_up_to": "2030-12-15",
      "financer": "",
      "financed": null,
      "insurance_company": "The New India Assurance Company Limited",
      "insurance_policy_number": "31030031220100290326",
      "insurance_upto": "2023-12-18",
      "manufacturing_date": "10/2015",
      "manufacturing_date_formatted": "2015-10",
      "registered_at": "SDM GURUGRAM, Haryana",
      "latest_by": "2023-04-13",
      "less_info": true,
      "tax_upto": "1900-01-01",
      "tax_paid_upto": "1900-01-01",
      "cubic_capacity": "0.00",
      "vehicle_gross_weight": "2510",
      "no_cylinders": "4",
      "seat_capacity": "7",
      "sleeper_capacity": "0",
      "standing_capacity": "",
      "wheelbase": "0",
      "unladen_weight": "1850",
      "vehicle_category_description": "Motor Car(LMV)",
      "pucc_number": "DL00300410001347",
      "pucc_upto": "2023-11-10",
      "permit_number": "",
      "permit_issue_date": "1900-01-01",
      "permit_valid_from": "1900-01-01",
      "permit_valid_upto": "1900-01-01",
      "permit_type": "",
      "national_permit_number": "",
      "national_permit_upto": "1900-01-01",
      "national_permit_issued_by": "",
      "non_use_status": "",
      "non_use_from": "1900-01-01",
      "non_use_to": "1900-01-01",
      "blacklist_status": "",
      "noc_details": "",
      "owner_number": "2",
      "rc_status": "ACTIVE",
      "masked_name": false,
      "challan_details": null,
      "variant": null,
      "refid": 32312312
    }
  }
}

FAILURE CALLBACK WITH NON-REFUNDABLE

{
  "event": "BULK_VERIFY_RC",
  "param": {
    "status": false,
    "statuscode": 422,
    "message": "#failure Message#",
    "reference_id": "16902751822215",
    "data": {
      "id_number": "1232asd",
      "refid": "202307251331"
    }
  }
}

FAILURE CALLBACK WITH REFUND

{
  "event": "BULK_VERIFY_RC",
  "param": {
    "status": false,
    "statuscode": 201,
    "message": "#failure Message#",
    "reference_id": "16902751822215",
    "data": {
      "id_number": "1232asd",
      "refid": "202307251331"
    }
  }
}

FAILURE CALLBACK WITHOUT DEBIT

{
  "event": "BULK_VERIFY_RC",
  "param": {
    "status": false,
    "statuscode": 202,
    "message": "#failure Message#",
    "data": {
      "id_number": "1232asd",
      "refid": "202307251331"
    }
  }
}

Expected Callback Response

{
  "statuscode":200,
  "message":"Transaction Success"
}
{
  "statuscode":"#response code other than 200#",
  "message":"Failure"
}