CashLine E-Check Void, if the ACH request needs to be deleted, it must occur prior to settlement. Consumer driven voids should be considered for all ACH transactions. The defintion of a consumer driven Void, is that the consumer is allowed to decline the ACH request. On a pin pad or POS display that the consumer is required to sign, the service fee must be displayed in the event that the electronic check is returned for Non Sufficient Funds, (NSF). We have the right to charge the returnCheckFee this is returned in the response packet along with the ACH approval response.
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 | 5804010000041 | REQUIRED | 4 / 36 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
DEL https://cce.cashline.certegy.com/v1/echeck/void/
{
"trxID": "123456",
"eCheckTrxID": "1234567890",
"eCheckTrxRefID": "58040100000041",
}
https://cce.cashline.certegy.com/v1/echeck/void
Void Approved Response – HTTPS 200
Meaning the Check has been successfully removed from being ACH
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"
}
Void Error – HTTPS 400 and HTTPS 500
Meaning the Check could NOT be removed from being ACH
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 | Transaction Not Processed | Max 200 Alpha only a-z, A-Z |
errorDetails | The transaction could not be acknowledged or voided, the UID and or reference numbers did not match the original authorization. Check the authorization details and reattempt. | Max 260 Alpha only a-z, A-Z |
errorType | decline | Max 20 Alpha only a-z, A-Z |
errorDate | 2020-04-08T09:54:55.33Z | DATE/TIME |
responseCode | 0333 | 4 Min / Max Numeric only |
adverseAction | False | boolean - true/false |
{
"errors": [{
"trxID": "123456",
"trxRefID": "5604490000014",
"errorPath": "/check/echeck/123456789",
"errorMessage": "Transaction Not Processed",
"errorDetails": "The transaction could not be acknowledged or voided, the UID and or reference numbers did not match the original authorization. Check the authorization details and reattempt.",
"errorType ": "edit_error",
"errorDate": "2020-04-08T09:54:55.33Z",
"responseCode": "0333",
"adverseAction": "False"
}]
}