Update Transaction Limits

Update per-transaction limits on individual channels for a prepaid account

📘

Header Parameters

For Header Reference Click here

Request Parameters

NameTypeMandatory (M) , Optional (O)Description
channelTypeStringMChannel Type - ECOM, POS, ATM, CL
limitStringMPer transaction limit amount
mobileStringOCustomer mobile number

Sample Request

curl --location --request POST 'https://api.instantpay.in/cards/prepaid/updateTransactionLimit' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data-raw '{
   "channelType": "ECOM/POS/ATM",
   "limit": "100000",
   "mobile": "97******31"
}
'
POST /cards/prepaid/updateTransactionLimit HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
Content-Type: application/json

{
   "channelType": "ECOM/POS/ATM",
   "limit": "100000",
   "mobile": "97******31"
}

📘

Response Parameters

For Response Reference Click here

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "OTP sent successfully",
    "data": {
        "otpReference": "17176",
        "recipient": {
            "mobile": "xxxxxx9007"
        }
    },
    "timestamp": "2023-09-13 16:05:30",
    "ipay_uuid": "h0059a1f8308-52ce-42ad-b4b2-af5ae96d76e4-OXfoVWiqkZmK",
    "orderid": null,
    "environment": "LIVE",
    "internalCode": null
}

📘

Important Information

Please note that updation of Channel Transaction limit is only applicable for Physical Card.

Language
Click Try It! to start a request and see the response here!