
Paypal
Integration
Process transactions via our Hosted Checkout Page.
Our platform allows both Express Checkout Mark and Express Checkout Shortcut mode. Depending on the mode you choose, add the following properties to a standard CreateHostedCheckout request:
Properties | Remarks |
---|---|
redirectPaymentMethodSpecificInput PaymentProductId |
PaymentProductId: Instructs our platform to send your customers directly to the PayPal portal returnURL: The URL we redirect your customers to after the payment has been finalised requiresApproval: Set to "false", as you need to process payments in Direct Sale mode |
paymentProduct840SpecificInput.isShortcut |
Defines whether you use Express Shortcut (true) or Checkout Markt (false) |
hostedCheckoutSpecificInput.returnUrl |
The URL we redirect your customers to after the payment has been finalised |
Find detailed information about this object and its properties in our HostedCheckout API and CreatePayment API.
A typical request for Express Checkout Mark mode looks like this:
{
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 1000
}
},
"hostedCheckoutSpecificInput": {
"returnUrl": "https://yourReturnURL.com"
},
"redirectPaymentMethodSpecificInput": {
"paymentProduct840SpecificInput": {
"isShortcut": false
},
"PaymentProductId": "840"
}
}
A typical request for Express Checkout Shortcut mode looks like this:
{
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 1000
}
},
"hostedCheckoutSpecificInput": {
"returnUrl": "https://yourReturnURL.com"
},
"redirectPaymentMethodSpecificInput": {
"paymentProduct840SpecificInput": {
"isShortcut": true
},
"PaymentProductId": "840"
}
}