Set up the payment hashes
(Mandatory Step)
For details on static and dynamic hashes check here.
Passing static hashes
For passing static hashes during integration, use below code:
Passing dynamic hashes
For passing dynamic hashes, merchant will receive a call on the method generateHash.
In the method parameter you will receive a dictionary or hashMap, extract the value of hashString from that. Pass that value to server, now server will append salt at the end and generate sha512 hash over it. Server will give that hash back to your app and app will give that hash to us via callback mechanism.
For passing dynamic hashes during integration, use below code:
Last updated