get https://payusandbox-kong.pc.enstage-sas.com/qa/limitmanagement/api/v1/jit/spendCapConfig
The Fetch JIT Spend Cap API helps the client to fetch the current value for the jitSpendCap
for the customer’s wallet.
Environment
Sandbox | https://payusandbox-kong.pc.enstage-sas.com/api/odr/v2/createServiceRequest |
Production | Contact your WIBMO KAM or support. |
Sample request
curl --request GET \
--url https://payusandbox-kong.pc.enstage-sas.com/qa/limitmanagement/api/v1/jit/spendCapConfig \
--header 'X-Consumer-Custom-ID: 8B891WA2E467Q0C54329BAS8D9C7A2X1' \
--header 'bankId: 6060' \
--header 'clientId: 2050' \
--header 'entityId: 100' \
--header 'secureCode: moXAT3AwopzqRdCphTUhLm' \
--header 'x-api-key: 4A02C4267C9A97A1488AB3259FD1A725'
Response parameters (Decrypted)
Attribute | Type | Parameter Requirement | Description |
---|---|---|---|
responseDateTime | Numeric(14) | Mandatory | Response date time in the format YYYYMMDDHHMMSS with time in 24-hour format. |
responseCode | String(4) | Mandatory | API request response code. 00 represents success. |
clientTxnId | String(100) | Optional | Echoed from the request. |
responseMessage | String(100) | Mandatory | Response message based on response code. |
clientId | String(50) | Mandatory | Echoed from the request. |
bankId | Numeric(4) | Mandatory | Echoed from the request. |
customerId | String(15) | Mandatory | Echoed from the request. |
description | String | Mandatory | Describes the result of the fetch operation. |
jitSpendCapLimit[].accountNumber | Numeric(16) | Mandatory | Account number for the wallet. |
jitSpendCapLimit[].jitSpendCap | Numeric(18) | Mandatory | JIT spend cap for the wallet. |
Sample response (Decrypted)
{
"description": "Fetch JIT Spend Limit Success",
"responseCode": "00",
"responseMessage": "SUCCESS",
"responseDateTime": "20240924080702",
"bankId": 7040,
"clientId": "2",
"customerId": "000000000501",
"jitSpendCapLimit": [
{
"accountNumber": "704030003041239",
"jitSpendCap": 0
},
{
"accountNumber": "704030003041240",
"jitSpendCap": 1000000
}
]
}