MoneyInIDealInit: Initialize iDeal Payment
Initializes the transaction and returns the URL of the bank to which you need to redirect your customer
Version | Description |
---|---|
1.0 |
How it works
You will need 3 integration points on your code:
- One call to DirectKit to init iDeal payment to credit the wallet
- One redirection from your website to the return URL by IDealInit
- One call to DirectKit to finalize the iDeal payment
Request
XML
<MoneyInIDealInit xmlns="Service_mb">
<wlLogin>string</wlLogin>
<wlPass>string</wlPass>
<language>string</language>
<version>string</version>
<walletIp>string</walletIp>
<walletUa>string</walletUa>
<wallet>string</wallet>
<amountTot>string</amountTot>
<amountCom>string</amountCom>
<issuerId>string</issuerId>
<comment>string</comment>
<returnUrl>string</returnUrl>
<autoCommission>string</autoCommission>
</MoneyInIDealInit>
JSON
{
"wlLogin":"string",
"wlPass":"string",
"language":"string",
"version":"string",
"walletIp":"string",
"walletUa":"string",
"wallet":"string",
"amountTot":"string",
"amountCom":"string",
"issuerId":"string",
"comment":"string",
"returnUrl":"string",
"autoCommission":"string"
}
Item | Description | Mandatory | Format | Example |
---|---|---|---|---|
wallet | Payment account ID to credit | Yes | [0 : 256] char | 33612345678 ou taxi67 |
amountTot | Amount to debit from the card | Yes | 2 decimals | 15.00 |
amountCom | Your fee | No | 2 decimals | 1.00 |
issuerId | ID of iDEAL Issuer resource:
| Yes | [0 : 10] char | 161 |
comment | Comment regarding the transaction | No | [0 :140] char | Order number 2457765AX2 |
returnUrl | Your return URL, called by iDeal to terminate the operation and on which the callback will be sent, with data in POST parameters. | Yes | [1 : max] char | |
autoCommission | Indicate if a fee is taken directly from the amount to pay. | Yes | [1] char | 0: No (by default) |
Answer
XML
<?xml version="1.0" encoding="utf-8"?>
<IDEALINIT>
<ID>String</ID>
<actionUrl>String</actionUrl>
</IDEALINIT>
JSON
{
"IDEALINIT":{
"ID":"String",
"actionUrl":"String"
}
}
Item | Description | Example |
---|---|---|
ID | ID of the transaction. You will use this value to confirm the transaction | 589 |
actionUrl | Redirect URL for the client on the iDeal page payment | https://gateway.cardgateplus.com/simulator/?return_url=http://localhost/test/3DS2.php&ec=2647565 |