CashLine eCheck Acknowledgement
*Client should wait 20 seconds for transactions responses, If no response retry the same transaction.
PUT https://cce.cashline.certegy.com/v1/echeck/ack
| Field Parameter | Value | Required or Optional | Field Values or Constraints |
|---|---|---|---|
| trxID | 123456 | REQUIRED | 4 / 20 Alphanumeric, a-z, A-Z, 0-9 - (dash) (Must be Unique for 2 years) |
| eCheckTrxID | 1234567890 | REQUIRED | 4 / 20 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
| eCheckTrxRefId | 5604990000013 | REQUIRED | 4 / 36 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
PUT https://cce.cashline.certegy.com/v1/echeck/ack
{
"trxID": "123456",
"eCheckTrxID": "1234567890",
"eCheckTrxRefID": "5604990000013",
}
Approval Response for eCheck Acknowledgement
| Field Parameter | Value | Field Values or Constraints |
|---|---|---|
| trxID | 123456 | 4 / 20 Alphanumeric, a-z, A-Z, 0-9 - (dash) (Must be Unique for 2 years) |
| trxRefID | 5604490000014 | 4 / 36 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
{
"trxID": "123456",
"trxRefID": "5604490000014"
}
Declined Response or Error Response for the eCheck Acknowledgement – HTTPS 400 and HTTPS 500
| Field Parameter | Value | Field Values or Constraints |
|---|---|---|
| trxID | 123456 | 4 / 20 Alphanumeric, a-z, A-Z, 0-9 - (dash) (Must be Unique for 2 years) |
| trxRefID | 5604490000014 | 4 / 36 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
| errorPath | /check/echeck/123456789 | Max 200 Alpha only a-z, A-Z |
| errorMessage | Errors in Inquiry Message to Certegy | Max 200 Alpha only a-z, A-Z |
| errorDetails | Certain required information or data elements were missing from the request. Reattempt the transaction. If the issue persists, contact Certegy Help Desk at 833-293-3131 | Max 260 Alpha only a-z, A-Z |
| errorType | edit_error | Max 20 Alpha only a-z, A-Z |
| errorDate | 2020-04-08T09:54:55.33Z | DATE/TIME |
| responseCode | 0313 | 4 digits Numeric |
| adverseAction | false | boolean - true/false |
{
"errors": [{
"trxID": "123456",
"trxRefID": "5604490000014",
"errorPath": "/check/echeck/123456789",
"errorMessage": "Errors in Inquiry Message to Certegy",
"errorDetails": "Certain required information or data elements were missing from the request. Reattempt the transaction. If the issue persists, contact Certegy Help Desk at 833-293-3131",
"errorType": "edit_error",
"errorDate": "2020-04-08T09:54:55.33Z",
"responseCode": "0313",
"adverseAction": "false"
}]
}