DreamzWallet

Wallet Transaction List

User can fetch wallet transaction details.

Host:

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

How to fetch transaction details?

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

In our API Specifications you can find a full list of parameters that can be sent in the initial request.

NOTE:

Pass AuthToken in header for each request Auth API

Sample Request
                      
                         
                      
                  
Sample Response
                      
                          
                      
                  

NOTE:

  • lastActivityId – keep 0
  • verificationHash - SHA256Algorithm.generateSHA256Hash(secKey.trim()+customerId.trim()+lastTransactionId.trim())
  • activityType – Sent, Added, Purchased, Received, Rejected request, Requested, Profile setting changed
  • If single activity, response is in JSON object and if multiple activities, response is in JSON Array (last 20 logs you will get)
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: < secKey > < customerId > < lastTransactionId >

Sample code

                    
                       
                    
                

Request Parameters

This reference lists all the standard flow parameters to be send in request.

Parameter Description Format Required
cust_id Generated unique customer id on per user sign up N
[0-9]
Yes
lastTransactionId Transaction List last id (If no id keep 0) N
[0-9]
Yes
fromWalletCurrency User's wallet currency. A3
[0-9]{3}
Yes
verificationHash Verification Hash has collected combination of parameters. String Yes
walletOwnerId Provided by Paymentplug Unique id. N20
[0-9]
Yes

Response Parameters

This reference list lists all the standard flow parameters to be received in response.

Parameter Description Format Required
responseCode Response code [a-zA-Z0-9] Yes
trackingId Unique Paymentplug transaction Id for Load money operation. N50
[0-9] {50}
Yes
orderDescription Unique Order ID for Load money. AN50
[a-zA-Z0-9] {50}
Yes
status Response status (SUCCESS/FAILED). A
[A-Z]
Conditional
statusDescription Transaction status description. A255 Conditional
amount Amount of the transaction. N50
[0-9] {1,50}
Yes
billingDescriptor Transaction descriptor A
[0-9]
Yes
registeredTime Transactions or activities performed time. N50 Yes
id Unique transaction id for each transaction. N50
[0-9] {50}
Yes
currency User's currency A3
[0-9]{3}
Yes
fromWallet Sender's wallet name. A255 Yes
toWallet Receiver's wallet name. A255 Yes
List of response code from API
Response Code Message
1 Success
2 Fail
3 Invalid Request