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_GST",
  "param": {
    "status": true,
    "statuscode": 200,
    "message": "GST Detail feteched suceessfully",
    "reference_id": 20371415,
    "data": {
        "client_id": "corporate_gstin_gsnedjCCWobihNfIAkKn",
        "gstin": "27AAACR5055K1Z7",
        "pan_number": "AAACR5055K",
        "business_name": "RELIANCE INDUSTRIES LIMITED",
        "legal_name": "RELIANCE INDUSTRIES LIMITED",
        "center_jurisdiction": "Commissionerate - BELAPUR,Division - DIVISION IV,Range - RANGE-IV (Jurisdictional Office)",
        "state_jurisdiction": "State - Maharashtra,Zone - Thane,Division - RAIGAD,Charge - URAN_701",
        "date_of_registration": "2017-07-01",
        "constitution_of_business": "Public Limited Company",
        "taxpayer_type": "Regular",
        "gstin_status": "Active",
        "date_of_cancellation": "1800-01-01",
        "field_visit_conducted": "No",
        "nature_bus_activities": [
            "Factory / Manufacturing",
            "Retail Business",
            "Input Service Distributor (ISD)",
            "Bonded Warehouse",
            "SEZ",
            "Works Contract",
            "Warehouse / Depot",
            "Service Provision",
            "Leasing Business",
            "Office / Sale Office",
            "Recipient of Goods or Services",
            "Wholesale Business",
            "EOU / STP / EHTP",
            "Supplier of Services",
            "Others",
            "Export"
        ],
        "nature_of_core_business_activity_code": "MFT",
        "nature_of_core_business_activity_description": "Manufacturer",
        "aadhaar_validation": "Yes",
        "aadhaar_validation_date": "2023-01-03",
        "filing_status": [],
        "address": "5, 5, TTC Industrial Area, Reliance Corporate Park, Thane Belapur Road, Ghansoli, Navi Mumbai, Thane, Maharashtra, 400701",
        "hsn_info": [],
        "filing_frequency": [],
      	"refid":32312312
    }
  }
}

FAILURE CALLBACK WITH NON-REFUNDABLE

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

FAILURE CALLBACK WITH REFUND

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

FAILURE CALLBACK WITHOUT DEBIT

{
  "event": "BULK_VERIFY_GST",
  "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"
}