The Get Consumer’s Limit endpoint where the consumerToken is passed in the URL and the only parameter is the MerchantID, the consumerToken is supplied in the response to the Get Consumer Request. If consumer is not enrolled, then an Enrollment transaction would be submitted after the consumer reads and accepts the Terms and Conditions and the acceptedTermsInd field can be set to “Y” (yes) indicating that the consumer has agreed to the terms and conditions and that they have been accepted.
GET https://cce.cashline.certegy.com/v1/kiosk/customer/limit
Field Parameter Value Required or Optional Field Values or Constraints
consumerToken
1b597b33-a0e7-11ea-9630-ef55d2cd0f41 REQUIRED Max 60 Alphanumeric and dash
merchantID 128756 REQUIRED 6 / 6 Numeric only, 0-9
https://cce.cashline.certegy.com/v1/kiosk/customer/limit?{consumerToken}{merchantID}
Consumer’s Limit Approve – HTTPS 200
Field Parameter Value Field Values or Constraints
cashLineLimit 150 No Min/(Max) 9999999.99 Numeric only - No commas. If the decimal point is omitted, the amount is considered to be in whole dollars.
cashLineAvailable 145 No Min/(Max) 9999999.99 Numeric only No commas
cashLineRefillAmount 50 No Min/(Max) 9999999.99 Numeric only No commas
cashLineRefillDate 06-25-2071 03:18:19 Future DATE/TIME
{
"cashLineLimit": "150.00",
"cashLineAvailable": "145.00",
"cashLineRefillAmount": "5.00",
"cashLineRefillDate": "06-25-2071 03:18:19"
}
Consumer’s Limit Error/Decline Response – HTTPS 400 and HTTPS 500
Field Parameter Value Field Values or Constraints
errorPath /kiosk/customer/limit/consumerToken Max 200 Alpha only a-z, A-Z
errorMessage Limit Increase attempt is failed because it is within 14 days Max 260 Alpha only a-z, A-Z
errorType system_error Max 20 Alpha only a-z, A-Z
errorDate 06-25-2020 03:18:19 DATE/TIME
adverseAction false (boolean) true/false (lowercase only)
{
"errors": [{
"errorPath": "/kiosk/customer/limit/f949fd27-b48f-11ea-9d2a-73abd555fe15",
"errorMessage": "Declined (Over CashLine Limit)",
"errorType": "Limit Increase attempt is failed because it is within 14 days",
"errorDate": "06-15-2020 14:15:02",
"adverseAction": "false"
}]
}
Doc navigation ← Kiosk Get Consumer Information Kiosk Increase Consumer's Limit →
Back to Top