Udyam Verification

Instantpay's Udyam Verification API solution offers businesses a seamless solution to verify their clients' Udyam (MSME) registration details. By integrating this tool, businesses can streamline the due diligence process, ensuring accuracy in Udyam registration verification. Enhance the efficiency of customer onboarding and compliance with MSME regulations. Improve the reliability of your database and minimise the risk of errors by incorporating Instantpay's Udyam Verification API solution into your identity verification toolkit, creating a secure and compliant environment for your business.

Header Parameters

NameTypeDescriptionMandatory (M) , Optional (O)Provided by INSTANTPAY (Y/N)
X-Ipay-Auth-CodeStringAuth Code is "1" (Fixed)MY
X-Ipay-Client-IdStringUnique Client Id Provided by InstantpayMY
X-Ipay-Client-SecretStringUnique Client Secret Provided by InstantpayMY
X-Ipay-Endpoint-IpStringEnd customer IP AddressMY

Request Parameters

Parameter NameTypeRequirementDescription
udyamNumberStringMandatoryUdyam Number
latitudeStringMandatoryEnd Customer Latitude.
longitudeStringMandatoryEnd Customer Longitude
externalRefStringMandatoryYour Unique Transaction id
consentStringMandatoryConsent should be
accepted by
customer

Sample Request

curl --location 'https://api.instantpay.in/identity/udyam' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=' \
--header 'X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7' \
--header 'X-Ipay-Auth-Code: 1' \
--header 'X-Ipay-Endpoint-Ip: 49.249.72.66' \
--header 'Content-Type: application/json' \
--data '{
    "udyamNumber" : "UDYAM-MH-19-XXXXX",
    "externalRef" : "456566",
    "latitude" : "27.999",
    "longitude" : "24.898",
    "consent" : "Y"

}'
POST /identity/udyam HTTP/1.1
Host: api.instantpay.in
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOQ8l80uxEOrgU6T3Oc4znVc=
X-Ipay-Client-Secret: 9e08574b440f1b4b13d19654cf31aa9b5d0b1effcc80785ded93ea87c5640fa7
X-Ipay-Auth-Code: 1
X-Ipay-Endpoint-Ip: 49.249.72.66
Content-Type: application/json
Content-Length: 159

{
    "udyamNumber" : "UDYAM-MH-19-XXXXX",
    "externalRef" : "456566",
    "latitude" : "27.999",
    "longitude" : "24.898",
    "consent" : "Y"

}

Response Parameters

Parameter NameTypeDescription
statuscodeStringInstantpay Status Code
actcodeStringAction Code
statusArrayStatus message
dataStringResponse Data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id(if transaction otherwise it is null)
environmentStringLive/Sandbox
internalCodeStringIt will be null

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": {
        "udyamDetails": {
            "udyamNumber": "UDYAM-DL-08-XXXXX",
            "nameOfEnterprise": " Health and Fitness",
            "typeOfEnterprise": "",
            "majorActivity": "Services",
            "organisationType": "Others",
            "socialCategory": "General",
            "dateOfIncorporation": "10/04/2019",
            "dateOfCommencementOfProductionOrBusiness": "",
            "unitDetails": [
                {
                    "slNo": "1",
                    "unitName": "1",
                    "flat": "A 24/9 1ST FLOOR",
                    "building": "AWIFS",
                    "villageOrTown": "NEW DELHI",
                    "block": "A",
                    "road": "SARITA VIHAR",
                    "city": "DELHI",
                    "pincode": "110044",
                    "state": "DELHI",
                    "district": "SOUTH"
                }
            ],
            "officialAddress": {
                "flatOrDoorOrBlockNo": "A 24/9 1ST FLOOR",
                "NameOfPremisesOrBuilding": "",
                "villageOrTown": "NEW DELHI",
                "block": "A",
                "roadOrStreetOrLane": "SARITA VIHAR",
                "city": "DELHI",
                "state": "DELHI",
                "district": "SOUTH",
                "pincode": "110044",
                "mobile": "XXXXXXX934",
                "email": "[email protected]"
            },
            "dic": "DELHI",
            "msmeDi": "DELHI",
            "dateOfUdyamRegistration": "28/01/2022"
        },
        "pool": {
            "referenceId": "1230621093735GXQLH",
            "openingBalance": "6.92",
            "paymentAmount": "3.54",
            "mode": "DR",
            "closingBalance": "3.38"
        }
    },
    "timestamp": "2023-06-21 09:37:35",
    "ipay_uuid": "h0069975fda1-c5a7-408d-b5b0-c5a8fbac850b",
    "orderid": "1230621093735GXQLH",
    "environment": "LIVE",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!