Versions Compared

Key

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

...

  1. POST Transactional JWT and the Card BIN to the full Card number to the Device Data Collection URL.

  2. Handle the Response from the Device Data Collection URL on the ReturnUrl provided within the Transactional JWT

Option 3 Example
NOTE : This example shows the ReturnUrl being populated in the Transactional JWT along with a POST parameter.

Code Block
<iFrame height="1" width="1" style="display: none;">
<form id="collectionForm" name="devicedata" method="POST" action="https://centinelapisbox.cardinalcommerce.com:50486/V1/Cruise/Collect">
<!-- POST Parameters: Bin=First 6 digits to full pan of the payment card number. For merchants unable to utilize the First 6 of the Cardnumber, optional Rest API is
 available to generate a session identifier representing the session. JWT=JWT generated per merchant spec -->
<input type="hidden" name="Bin" value="410000" />
<input type="hidden" name="JWT" value="JWT generated per merchant spec" />
</form>
<script>window.onload = function() {
  // Auto submit form on page load
  document.getElementById('collectionForm').submit();
}
</script>

...

Info

Click here to review the Device Data Collection responses.