worldline Direct
Sign up

Oney 3x-4x

Intro

Oney 3x-4x is an instalment solution offered by the French acquirer Thunes.

All your customers from the SEPA can split a credit card payment into 3 or 4 instalments. Your customers enter some personal data and their credit card details on the Thunes portal during the initial transaction request. Thunes charges the credit card for the remaining instalments automatically.

The integration is very easy, as you only need to send some additional parameter along with your request.

Offer this payment method in a steadily expanding list of European countries!

Overview

Payment group:
Payment product id:
5110
Key benefits
  • Low PCI requirements
  • Easy integration
  • Guaranteed payment
  • Refunds are possible (Partial/multiple/full)

Boarding

To use Oney 3x/4x for either in our test/live environment, follow these steps: 

  1. Sign a contract with Thunes and receive activation credentials in return.
  2. Send the activation credentials (MID/password and possibly other credentials) to us.
  3. We do the necessary onboarding and provisioning check.
  4. We activate the payment method in your account.

Countries & currencies

Supported countries

Supported currencies

  • Euro (EUR)
  • Hungarian forint (HUF)
  • Romanian new leu (RON)

Integration

Redirect your customers to the Thunes payment portal via our Hosted Checkout Page. Find a high level overview in the "Process flows" chapter.

Add the following properties to a standard CreateHostedCheckout request:

{
  "order": {
    "amountOfMoney": {
      "currencyCode": "EUR",
      "amount": 170000
    },
    "customer": {
      "personalInformation": {
        "name": {
          "title": "Mr.",
          "firstName": "Dupont",
          "surname": "Jean"
        },
        "gender": "male",
        "dateOfBirth": "19490917"
      },
      "billingAddress": {
        "street": "bd de Rochechouart",
        "houseNumber": "13",
        "zip": "75009",
        "city": "Paris",
        "state": "Paris",
        "countryCode": "FR"
      },
      "shippingAddress": {
        "street": "bd de Rochechouart",
        "houseNumber": "13",
        "zip": "75009",
        "city": "Paris",
        "state": "Paris",
        "countryCode": "FR"
      },
      "contactDetails": {
        "emailAddress": "jean.dupont@test.com",
        "phoneNumber": "+330175757575"
      }
    },
    "references": {
      "merchantOrderId": "{{TIMESTAMP}}"
    },
    "shoppingCart": {
      "items": [
        {
          "amountOfMoney": {
            "currencyCode": "EUR",
            "amount": 170000
          },
          "orderLineDetails": {
            "productName": "ACME12",
            "discountAmount": 0,
            "lineAmountTotal": 170000,
            "productCode": "ASO45",
            "productPrice": 170000,
            "productType": "Fashion",
            "quantity": 1,
            "taxAmount": 0,
            "unit": "piece"
          }
        }
      ]
    }
  },
  "hostedCheckoutSpecificInput": {
    "locale": "fr_FR"
  },
  "redirectPaymentMethodSpecificInput": {
    "requiresApproval": true,
    "paymentProductId": 5110,
    "paymentOption": "W3122"
  }
}
Properties Remarks

order.customer
     merchantCustomerId
     personalInformation
     companyInformation
     languageCode
     billingAddress
     shippingAddress
     contactDetails
     vatNumber

If you do not send shippingAddress, your customers will have to provide this data on the Thunes portal.

references
     merchantOrderId
     merchantReference
     invoiceData
     descriptor

-

typeInformation.purchaseType

-

hostedCheckoutSpecificInput.locale

-

redirectPaymentMethodSpecificInput
      requiresApproval
      paymentProductId
      paymentOption

requiresApproval: Set to "false" as this payment method allows only direct sale operations.

paymentProductId: The numeric identifier of the payment method on our platform. Find this id in the "Overview" chapter. It instructs our platform to send your customers directly to the Thunes portal. If left out, our platform sends your customers to the Hosted Checkout Page instead, allowing them to choose this or any other payment method in your account.

paymentOption: contains a value to indicate the transaction is split into 3 or 4 instalments. The values for are defined by you and Thunes.

Find detailed information about this object and its properties in our CreateHostedCheckoutAPI.

Contact Thunes to define a minimum/maximum amount limit per transaction.

Process flows

  1. Your customers finalse an order in your shop and select Oney 3x-4x.
  2. You send this CreateHostedCheckout request to our platform.
  3. You redirect your customers via the redirectUrl to the Thunes portal. They confirm the order with their personal data.
  4. We receive the transaction result.
  5. We redirect your customer to your returnUrl
  6. You request the transaction result from our platform via GetPayment or receive the result via webhooks.
  7. If the transaction was successful, you can deliver the goods / services.
Oney-3x-4x-flow.png

Testing

Refer to our Test cases for test data and detailed instructions.

Make sure to use the right endpoint and switch back to the live URL as soon as you have finished your tests.

Was this page helpful?

Do you have any comments?

Thank you for your response.