...
Option 3 Example
NOTE : This example shows the ReturnUrl being populated in the Transactional JWT along with a POST parameter.
Code Block |
---|
<iFrame height | <iFrame height="1" width width="1" style style="display: none;">
<form <form idid="collectionForm" name name="devicedata" method method="POST" action 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 available to generate a session identifier representing the session. JWT=JWT generated per merchant spec -->
<input type<input type="hidden" name name="Bin" value value="410000" />
<input type<input type="hidden" name name="JWT" value value="JWT generated per merchant spec" />
</form>
<script>window.onload = function() {
// Auto submit form on page load
document document.getElementById('collectionForm').submit();
}
</script> |
|
...