Fetch JIT Spend Cap API

The Fetch JIT Spend Cap API helps the client to fetch the current value for the jitSpendCap for the customer’s wallet.

Environment

  
Sandboxhttps://payusandbox-kong.pc.enstage-sas.com/api/odr/v2/createServiceRequest
ProductionContact 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)
AttributeTypeParameter RequirementDescription
responseDateTimeNumeric(14)MandatoryResponse date time in the format YYYYMMDDHHMMSS with time in 24-hour format.
responseCodeString(4)MandatoryAPI request response code. 00 represents success.
clientTxnIdString(100)OptionalEchoed from the request.
responseMessageString(100)MandatoryResponse message based on response code.
clientIdString(50)MandatoryEchoed from the request.
bankIdNumeric(4)MandatoryEchoed from the request.
customerIdString(15)MandatoryEchoed from the request.
descriptionStringMandatoryDescribes the result of the fetch operation.
jitSpendCapLimit[].accountNumberNumeric(16)MandatoryAccount number for the wallet.
jitSpendCapLimit[].jitSpendCapNumeric(18)MandatoryJIT 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
        }
    ]
}

Request parameters

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