Skip to main content

Class NotificationsResponse


Properties

NAMETYPELENGTHDESCRIPTIONEXAMPLES
DataItemsDataItems[]Currently not in use. Send as null."DataItems":null,
ResponseCodeString50Response status. For a successful response, send the code "00".

If there is an issue with processing the request, at a minimum we request that the error code "06" be sent.

It is recommended that your solution support as many error response codes as appropriate to allow the Financial Institution to quickly identify and resolve any issues. If your solution will support more error codes than "06":
  • Avoid any response codes starting with "ESA" since the internal JHA/Ensenta error response codes start with it. If interested in the internal JHA/Ensenta error codes, see document Smart Alerts Exceptions Page User Guide - External.
  • It is the responsibility of the Financial Institution to know and understand what any error response codes mean.
"ResponseCode":"00",
ResponseDescriptionString1000The description associated with the Response Code. This is an internal description for the Financial Institution.

At a minimum, send the following descriptions:
  • For response code 00, send "success"
  • For response code 06, send "failure"


If supporting error response codes beyond 06, at a minimum send "failure", but it is recommended to have more meaningful descriptions.
"ResponseDescription":"success"

Examples

{
"DataItems": null,
"ResponseCode": "00",
"ResponseDescription": "success"
}