Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »


***Changes made on 09/30/2019 are delineated below in Red.***

Added Close Button details and linked to Songbird configurations via displayExitButton

Close Button

The close button feature will automatically enable a small close X in the top right corner of the modal window.  When this button is clicked, it will close the modal window and trigger the payments.validated event with an error response.  This feature requires the displayExitButton configuration option to be set to work properly.


From a reporting standpoint this will look to be an abandoned transaction. This is because we do not complete any messaging nor submit the authentication screen in any way. The modal is simply disposed of and the merchant informed the user canceled.


payments.validated response example

1
2
3
4
5
6
{
    "Validated": false,
    "ActionCode": "ERROR",
    "ErrorNumber": 10011
    "ErrorDescription": "Canceled by user"
}

Close Button

The close button feature will automatically enable a small close X in the top right corner of the modal window.  When this button is clicked, it will close the modal window and trigger the payments.validated event with an error response.  This feature requires the displayExitButton configuration option to be set to work properly.


Info
From a reporting standpoint this will look to be an abandoned transaction.  This is because we do not complete any messaging nor submit the authentication screen in any way.  The modal is simply disposed of and the merchant informed the user cancelled.
Code Block
language        js
  
title           payments.validated response example
  
linenumbers     true
 
  
{
    "Validated": false,
    "ActionCode": "ERROR",
    "ErrorNumber": 10011
    "ErrorDescription": "Canceled by user"
}
  • No labels