Retail Acknowledgement
With the approved transaction HTTPS 200, Approval Receipt consumer approval receipt should print or would be clearly displayed on pin pad with Service Charge(RegE) fee, and would be signed by the consumer presenting the check.
The acknowledgement transaction is the confirmation the the consumer approves to have the check electronically converted. With this acknowledgement the check will be sent to settlement in that evening.
PUT https://cce.cashline.certegy.com/v1/check/retail
Field Parameter | Required | Field Values or Constraints |
---|---|---|
merchantID 123456 | REQUIRED | 6 / 6 All Numeric, 0-9 (no special characters or alpha allowed) |
trxID AA-bb-1234567890 | REQUIRED | This is the same ID from your post request 4 / 20 Alphanumeric and dash (a-z A-Z 0-9 - (dash)) |
trxRefID 987658254 | REQUIRED | 15 digits max Numeric only. No dashes or spaces. |
achRefID 1234567890123 | REQUIRED | 15 digits max Numeric only. No dashes or spaces. |
integratorID xYzAbC123 | REQUIRED | 4 / 30 Alphanumeric, space and dash |
PUT https://cce.cashline.certegy.com/v1/check/retail/
{
"merchantID":"123456",
"trxID":"AA-bb-1234567890",
"trxRefID":"5050000000008",
"achRefID":"72755512",
"integratorID":"xYzAbC123"
}
Successful Sale Acknowledgement -HTTPS 200
- Responses Response Fields Grouped here
Field Parameter | Field Values or Constraints |
---|---|
trxID AA-bb-1234567890 | This is the same ID from your post request 4 / 20 Alphanumeric and dash (a-z A-Z 0-9 - (dash)) |
trxRefID 7275551212 | 15 digits max Numeric only. No dashes or spaces. |
achRefID 12345678 | 15 digits max Numeric only. No dashes or spaces. |
{
"trxID":"AA-bb-1234567890",
"trxRefID":"5050000000008",
"achRefID":"72755512",
}
Decline or Corrective Action – HTTPS 400 and HTTPS 500
Field Parameter | Field Values or Constraints |
---|---|
errors { | object |
errorPath /check/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. | Max 260 Alpha only a-z, A-Z |
errorType edit_error | Max 20 Alpha only a-z, A-Z |
errorDate 06-25-2020 03:18:19 | DATE/TIME |
trxID 1234567890 | 4 / 20 Alphanumeric, a-z, A-Z, 0-9 - (dash) |
trxRefID 5804010000041 | 10 / 15 Numeric only, 0-9 |
returnCode 0115 | 4 Min / Max Nummeric only |
adverseAction False | boolean - true/false |
stationNum 1234567890 | 10 Min / Max Numeric only |
{
"errors": [
{
"errorPath":"/check/123456789",
"errorMessage":"Errors in Inquiry Message to Certegy",
"errorDetails":"Certain required information or data elements were missing from the request. Reattempt the transaction.",
"errorType":"edit_error",
"errorDate":"2020-04-08T09:54:55.33Z",
"trxID":"1234567890",
"trxRefID":"5804010000041",
"returnCode":"0115",
"adverseAction":"false",
"stationNum":"1234567890"
}
]
}