Retrieve Payment Details

GetMoneyInTransDetails

How it works

Retrieves the details of a Payment that has previously been initiated.

  • Card
  • iDeal
  • Bank transfer
  • SEPA Direct Debit

📘

👇 Alternative

Consider using the following functions which are more efficient because they accept a list of wallets (along with other filters), so they can return transactions of several wallets at the same time:

XML

<GetMoneyInTransDetails xmlns="Service_mb">
  <wlLogin>string</wlLogin>
  <wlPass>string</wlPass>
  <language>string</language>
  <version>string</version>
  <walletIp>string</walletIp>
  <walletUa>string</walletUa>
  <transactionId>string</transactionId>
  <transactionComment>string</transactionComment>
  <transactionMerchantToken>string</transactionMerchantToken> <!-- since version 1.1 -->
  <startDate>string</startDate>
  <endDate>string</endDate>
</GetMoneyInTransDetails>
<?xml version="1.0" encoding="utf-8"?>
<TRANS>
	<HPAY>
		<ID>string</ID>
		<DATE> string </DATE>
		<SEN> string </SEN>
		<REC> string </REC>
		<DEB> string </DEB>
		<CRED> string </CRED>
		<COM> string </COM>
		<MSG> string </MSG>
		<STATUS> string</STATUS>
		<THREEDS> <!--FROM 01/04/21 -->
			<THREEDSMODEREQUESTED>string</THREEDSMODEREQUESTED>
			<THREEDSRESULT>string</THREEDSRESULT>
		<EXTRA> <!--since version 1.3 -->
			<IS3DS>string</IS3DS>
			<CTRY>string</CTRY>
			<AUTH>string</AUTH> <!--since version 1.5 -->
			<NUM>string</NUM> <!--since version 1.8 -->
			<EXP> string </EXP><!--since version 1.8 -->
			<TYP> string </TYP><!--since version 1.8 -->
		</EXTRA>
		<INT_MSG>string</INT_MSG>
		<MLABEL>string</MLABEL><!--since version 1.6 -->
		<SCHEDULED_DATE>string</SCHEDULED_DATE>
	</HPAY>
	...
	<HPAY>
		...
	</HPAY>
</TRANS>

JSON

{   
    "wlLogin":"string",
    "wlPass":"string",
    "language":"string",
    "version":"string",
    "walletIp":"string",
    "walletUa":"string",
    "transactionId":"string",
    "transactionComment":"string",
    "transactionMerchantToken":"string",
    "startDate":"string",
    "endDate":"string"
}
{
    "transactions": {
        "value": [
            {
                "receiverAccountId": "5d476b08-9961-43b5-a206-e6a195e2ea29",
                "creditAmount": 1400,
                "scheduledNumber": null,
                "maskedLabel": "",
                "card": {
                    "id": 0,
                    "is3DS": false,
                    "expiration": "2025/01",
                    "type": "VISA"
                },
                "refundAmount": 0.0,
                "bankReference": null,
                "ChequeSendingAddress_CorporateName": null,
                "ChequeSendingAddress_Street": null,
                "ChequeSendingAddress_City": null,
                "ChequeSendingAddress_PostCode": null,
                "threeDS": {
                    "threeDSModeRequested": "NO_PREFERENCE",
                    "threeDSResult": "CHALLENGE"
                },
                "id": 480782,
                "method": 0,
                "date": 1617037555,
                "commissionAmount": 100,
                "comment": "Order number 2457765AX2",
                "status": 0,
                "executionDate": 1617037649,
                "lemonWayCommission": {
                    "idp2p": "322676",
                    "amount": 57
                },
                "reference": "66239bc6-3ecc-42de-9e07-983d1201ce66"
            }
        ]
    }
}

Request Input Description

VersionItemDescriptionMandatoryFormatExample
>= 1.0transactionIdMoney-In IDNoint255
>= 1.0transactionCommentMoney-In CommentNo[0:140] charOrder number 245776
>= 1.1transactionMerchantTokenToken from wkToken variable, used in the entry of MoneyInWebInit (v 1.0)No[0: 50] char312232
>= 1.0startDateDate in UTC seconds, in order to return transactions initialized after startDateNo[0:10] int1373448225
>= 1.0endDateDate in UTC seconds, in order to return transactions initialized before startDateNo[0:10] int1373448225

Response Output Description

(Full response output description remains unchanged but formatted in MDX accordingly.)