MoneyInIDealConfirm: Finalization of the iDeal Payment


To be called after the customer returns to your website, in order to confirm the transaction that was made by iDEAL

Version

Description

1.0


1.1

Output: new value for STATUS


How it works

This method finalizes the credit of a wallet by iDeal, after the user has returned to your website.

You can only finalize the operation once.

Request


XML

<MoneyInIDealConfirm xmlns="Service_mb">
  <wlLogin>string</wlLogin>
  <wlPass>string</wlPass>
  <language>string</language>
  <version>string</version>
  <walletIp>string</walletIp>
  <walletUa>string</walletUa>
  <transactionId>string</transactionId>
</MoneyInIDealConfirm>

JSON

{   
    "wlLogin":"string",
    "wlPass":"string",
    "language":"string",
    "version":"string",
    "walletIp":"string",
    "walletUa":"string",
    "transactionId":"string"
}

Item

Description

Mandatory

Format

Example

transactionId

Transaction ID to finalize

Yes

int

255

Answer


XML

<?xml version="1.0" encoding="utf-8"?>
<TRANS>
	<HPAY>
		<ID>string</ID>
		<MLABEL>string</MLABEL>
		<DATE> string </DATE>
		<SEN> string </SEN>
		<REC> string </REC>
		<DEB> string </DEB>
		<CRED> string </CRED>
		<COM> string </COM>
		<MSG> string </MSG>
		<STATUS> string</STATUS>
	</HPAY>
</TRANS> 
 

JSON

{
  "TRANS": {
    "HPAY": {
      "ID": "string",
      "MLABEL": "string",
      "DATE": " string ",
      "SEN": " string ",
      "REC": " string ",
      "DEB": " string ",
      "CRED": " string ",
      "COM": " string ",
      "MSG": " string ",
      "STATUS": " string"
    }
  }
}

Item

Description

Example

ID

Transaction ID

255

MLABEL

IBAN used for the payment


DATE

Request Date

10/09/2011 18:09:27

SEN

Not used in this case


REC

Wallet to credit

Pizza56

DEB

0.00 in this case

0.00

CRED

Amount to credit to the wallet (total less fee)

15.00

COM

Your fee

2.00

MSG

Comment

Order number 2457765AX2

STATUS

3: Money-in successful
4: Error (since version 1.1)
0: Waiting for finalization (since version 1.1)

3