Add Payment Details

Request Parameters

NameTypeRequirementDescription
gcIdStringMandatoryContact Id(You will get from Add Contact Response)
accountTypeStringMandatoryIt will be VPA,WALLET or Account
upiIdStringOptional(Mandatory If accountType is VPA)UPI ID
accountNumberStringOptional(Mandatory If accountType is ACCOUNT)Bank Account Number
accountIfscStringOptional(Mandatory If accountType is ACCOUNT)Bank IFS Code
beneficiaryNameStringOptional(Mandatory If accountType is ACCOUNT)Name of the Beneficiary
isVerificationOnbooleanOptionalIt will be true or false
phoneNumberStringOptional(Mandatory If accountType is WALLET)Wallet Phone Number
externalRefStringOptional (Mandatory If isVerificationOn is true)Unique Transaction Id
latitudeStringOptional (Mandatory If isVerificationOn is true)Current Location Latitude
longitudeStringOptional (Mandatory If isVerificationOn is true)Current Location Longitude

Sample Request

curl --location 'http://api.localhost/contacts/payment' \
--header 'X-Ipay-Auth-Code: 2' \
--header 'X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=' \
--header 'X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825' \
--header 'X-Ipay-Endpoint-Ip: 125.0.0.1' \
--header 'X-Ipay-Request-Hash: 123456789|123456789|123456789|123456789|123456789|123456789|1234' \
--header 'X-Ipay-Request-Timestamp: 1683697803000' \
--header 'X-Ipay-Hash-Check: OFF' \
--header 'User-Agent: InstantPayAPITest/1.0.0' \
--header 'Content-Type: application/json' \
--data-raw '{
    "gcId" : "6447f86b1a1767723d055989",
    "accountType" : "VPA", 
    "upiId" : "7428585742@ybl",
    "accountNumber": "",
    "accountIfsc" : "",
    "beneficiaryName" : "",
    "isVerificationOn" : true,
    "phoneNumber" : "",
    "latitude" : "",
    "longitude" : "",
    "externalRef": ""
}'
POST /contacts/payment HTTP/1.1
Host: api.localhost
X-Ipay-Auth-Code: 2
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=
X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825
X-Ipay-Endpoint-Ip: 125.0.0.1
X-Ipay-Request-Hash: 123456789|123456789|123456789|123456789|123456789|123456789|1234
X-Ipay-Request-Timestamp: 1683697816000
X-Ipay-Hash-Check: OFF
User-Agent: InstantPayAPITest/1.0.0
Content-Type: application/json
Content-Length: 301

{
    "gcId" : "6447f86b1a1767723d055989",
    "accountType" : "VPA", 
    "upiId" : "7428585742@ybl",
    "accountNumber": "",
    "accountIfsc" : "",
    "beneficiaryName" : "",
    "isVerificationOn" : true,
    "phoneNumber" : "",
    "latitude" : "",
    "longitude" : "",
    "externalRef": ""
}

📘

Note

If isVerificationOn is true then Account or VPA will be Verified and then details were added and if isVerificationOn is false then it will add the details without verifying.

If the details were not verified then you can verify it later with Verify Payment API.

Response Parameter

NameTypeDescription
statuscodeStringInstantpay status code
actcodeStringAction code
statusStringstatus message
dataArrayResponse data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id ( If transaction otherwise it is null )
enviromentStringLive/Sandbox
{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Payment Method Added Successfully",
    "data": {
        "gcId": "645383ba4acec95a32089822",
        "accountType": "VPA",
        "isPrimary": false,
        "isVerified": false,
        "accountNumber": "7428585742@ybl",
        "accountIfsc": "",
        "beneficiaryName": "Instantpay India Ltd.",
        "updated_at": "2023-05-04T11:56:11.027000Z",
        "created_at": "2023-05-04T11:56:11.027000Z",
        "_id": "64539d5be8c166242100ce72"
    },
    "timestamp": "2023-05-04 17:26:11",
    "ipay_uuid": "h068991615f9-fdf9-4b61-8ce9-0df4ecd1c891",
    "orderid": null,
    "environment": "LIVE",
    "internalCode": null
}
Language
Click Try It! to start a request and see the response here!