
Multibanco
Integration
Redirect your customers to the Limonetik payment portal via our Hosted Checkout Page.
Add the following properties to a standard CreateHostedCheckout request:
Properties | Remarks |
---|---|
order.customer.contactDetails.emailAddress |
Your customer’s e-mail address |
redirectPaymentMethodSpecificInput.paymentProductId |
Instructions to our platform for the redirection to the Limonetik payment portal |
Find detailed information about this object and its properties in our Hosted Checkout API.
A typical request looks like this:
{
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 10000
},
"customer": {
"contactDetails": {
"emailAddress": "jean.dupont@test.com"
}
},
"references": {
"merchantReference": "mr_{{TIMESTAMP}}"
}
},
"hostedCheckoutSpecificInput": {
"locale": "pt_PT"
},
"redirectPaymentMethodSpecificInput": {
"requiresApproval": true,
"paymentProductId": 5500
}
}