Get Wallet List


Use this API to get the Wallet list .


Host:

Test: https://mob.paymentz.com/
Live: https://wallet.paymentz.com/

The POST request will be send over HTTPS to the walletServices/WalletServices/getWalletList endpoint.


Sample Request


Sample Response


How to generate verification hash?

Verification Hash has to be calculated with following combination using SHA256 algorithm and need to be send along with the authentication parameters in each server-to-server request. Parameters required for creating hash are :
<secKey><customerId>


Sample Code

Language:
import java.security.MessageDigest
def generatesha256Checksum( String text ) {
String values= text 
MessageDigest digest = Digest::SHA2.new(256).hexdigest
digest.update(values.bytes);
new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0')
}
Copyright © Paymentz 2025 . All Rights Reserved.