Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Key

Description

Type

Required

AcsUrlThe ACSUrl field returned on the CMPI_LOOKUP from Centinel CoreStringY
PayloadThe Payload fieldĀ returned on the CMPI_LOOKUP from Centinel CoreStringY

Setup Complete Data

This object is returned back to the merchant on the 'payments.setupComplete' event as the first argument.

FieldDescType
sessionIdMerchant Consumer Session Id - This is the consumer's session id assigned to this user by Centinel API.String
modulesAn array of modules that were attempted to be loaded and their status. You can determine which payment brands were loaded successfully and which may have been configured on the merchant account but failed to load properly.Array of Module State Objects


Code Block
languagejs
titleExample setup complete data object
linenumberstrue
{
  "sessionId": "0_4f85c155-6604-4056-8957-7090412af179",
  "modules": [{
    "module": "CCA",
    "loaded": true
  }]
}

Module State

This object is returned from the 'setup.complete' event within an array and can be used to determine what modules were attempted to be loaded on page load. This object allows you to determine if a payment brand was successfully loaded, or failed to load.

...