Some consumers may want to increase the value placed on their ability to ACH funds from the account(s) that they have enrolled with CashLine eCheck product. This is where the request for a limit increase transaction can be used. For this transaction type, the consumerToken along with the merchantID is sent in a string. The consumerToken is passed in the URL and the only parameter is the MerchantID.
PUT https://cce.cashline.certegy.com/v1/customer/
Field Parameter | Field Values or Constraints |
---|---|
consumerToken e4321e6d-333e-11ea-a53a-15092651fc59 | 36 Min/Max Alphanumeric and dash |
merchantID 128756 | 6 / 6 Numeric only, 0-9 |
https://cce.cashline.certegy.com/v1/customer/limit/increase?consumerToken=e4321e6d-333e-11ea-a53a-15092651fc59&merchantID=279300
Approve for Limit Increase – HTTPS 200
Field Parameter | 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. If the decimal point is omitted, the amount is considered to be in whole dollars. |
CashLineRefillAmount 5 | No Min/(Max) 9999999.99 Numeric only - No commas. If the decimal point is omitted, the amount is considered to be in whole dollars. |
CashLineRefillDate 06-25-2071 03:18:19 | Future DATE/TIME |
{
"cashLineLimit":"150.00",
"cashLineAvailable":"145.00",
"cashLineRefillAmount":"5",
"cashLineRefillDate":"06-25-2071 03:18:19"
}
Decline request for Limit Increase – HTTPS 400 and HTTPS 500
Field Parameter | Field Values or Constraints |
---|---|
errors [ | object |
errorPath /customer/limit/99da5722-83f9-11ea-b9c5-f9a750265efe | 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":"/customer/limit",
"errorMessage":"Limit Increase attempt has failed, because it is within 14 days of the last request",
"errorType":"system error",
"errorDate":"06-25-2020 03:18:19",
"adverseAction":"false"
}
]
}
Decline request for Limit Increase – SSN Required – HTTPS 400 and HTTPS 500
Field Parameter | Field Values or Constraints |
---|---|
errors [ | object |
errorPath /customer/limit/99da5722-83f9-11ea-b9c5-f9a750265efe | Max 200 Alpha only a-z, A-Z |
errorMessage Limit increase cannot be processed without additonal information. Please provide SSN for a limit increase | 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":"/customer/limit/99da5722-83f9-11ea-b9c5-f9a750265efe",
"errorMessage":"Limit increase cannot be processed without additional information. Please provide SSN for a limit increase",
"errorType":"system_error",
"errorDate":"06-25-2020 03:18:19",
"adverseAction":"false"
}
]
}