Versions Compared

Key

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

The SuperWalletGetTransactions request will show the transactions paid for a customer, ordered by payment date (descending)

URL: https://secure1.sandbox.directpay.online/API/v6/


Variables to send:


Parameter
Data type
Description

 Request Text createAccount SuperWalletGetTransactionsMandatory
CompanyTokenTokenToken you got from 3G to operate this APIMandatory
customerUnqTokenToken of the customerMandatory
customerTokenTokenToken for customer's credit card. If not sent, results will be for all cards.Optional
numberOfRecordsNumberMaximum number of records to show in response (default 100)Optional
indexOfRecordsNumberIndex for first (default 0)Optional


Request example


Code Block
languagexml
titleRequest example
<?xml version="1.0" encoding="utf-8"?>
<API3G>
	<CompanyToken>68B90B5E-25F6-4146-8AB1-C7A3A0C41A7F</CompanyToken>
	<Request>SuperWalletGetTransactions</Request>
	<customerUnq>9D3D99F7-3FEE-4792-961A-6EFFB5B642BA</customerUnq>
	<indexOfRecords>50</indexOfRecords>
	<numberOfRecords>25</numberOfRecords>
</API3G>


...