Sofinco 3x/4x
Intro
As Sofinco 3x/4x offer various brands, multiple paymentProductId exist. Find all possible values in the Integration chapter.
Sofinco 3x/4x is an instalment solution offered by Sofinco.
By offering flexible instalment plans, you make your customers' purchases affordable, which improves your conversion rate and revenue. Your customers may choose to split their payment into three or four equal, interest-free instalments over several months. Your customers enter their card (Visa, MasterCard or Cartes Bancaires) and personal details on the Sofinco payment page. Sofinco then charges your customers automatically for the individual instalments.
Sofinco 3x/4x outsources the risk of payment defaults, as Sofinco pays you upfront and collects the funds from your customers.
The integration is very easy, as you only need to send some additional parameters along with your request.
Onboarding
To use Sofinco for either in our test/live enviroment, follow these steps:
- Sign a contract with Sofinco and receive activation credentials in return.
- Send the activation credentials (MID/password and possibly other credentials) to us.
- We do the necessary onboarding and provisioning check.
- We activate the payment method in your account.
Integration
Redirect your customers to the Sofinco payment page 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": 100000
},
"customer": {
"merchantCustomerId": "mc_638115340658687368",
"personalInformation": {
"name": {
"title": "Mr.",
"firstName": "Wile",
"surname": "Coyote"
},
"gender": "male",
"dateOfBirth": "19490917"
},
"billingAddress": {
"street": "Desertroad",
"houseNumber": "13",
"zip": "84536",
"city": "Monument Valley",
"state": "Utah",
"countryCode": "US"
},
"shippingAddress": {
"street": "Desertroad",
"houseNumber": "1",
"zip": "84536",
"city": "Monument Valley",
"state": "Utah",
"countryCode": "US"
},
"contactDetails": {
"emailAddress": "wile.e.coyote@acmelabs.com",
"phoneNumber": "0611111111"
}
},
"references": {
"merchantReference": "ORDERIDxx"
},
"shoppingCart": {
"items": [
{
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 100000
},
"orderLineDetails": {
"productName": "ACME12",
"discountAmount": 0,
"lineAmountTotal": 100000,
"productCode": "ASO45",
"productPrice": 100000,
"productType": "Fashion",
"quantity": 1,
"taxAmount": 0,
"unit": "piece"
}
}
]
}
},
"hostedCheckoutSpecificInput": {
"locale": "fr_FR"
},
"redirectPaymentMethodSpecificInput": {
"requiresApproval": true,
"paymentProductId": 5131
}
}
Property | Remarks |
---|---|
order.amountOfMoney |
amount: The gross amount you want to charge for this order. currencyCode: The ISO 4217 currency code for this amount. |
customer |
Your customers's personal information. |
customer |
Your customers's billing/shipping address. If you do not send billingAddress, your customers will have to provide this data on the Sofinco payment page. |
shoppingCart |
The content of the shopping cart as an array of items objects. amountOfMoney.amount: The full amount of the items, calculated as orderLineDetails.productPrice X orderLineDetails.quantity Make sure to calculate the value for order.amountOfMoney.amount by adding up all instances of shoppingCart.items.amountOfMoney.amount |
hostedCheckoutSpecificInput.locale |
The language version of our Hosted Checkout Page. |
redirectPaymentMethodSpecificInput |
paymentProductId: The numeric identifier of the payment method on our platform. Find this id in the list below. It instructs our platform to send your customers directly to the Sofinco payment page. 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. |
Find detailed information about this object and its properties in our CreateHostedCheckoutAPI.
List of available Sofinco brands
Brand | paymentProductId |
---|---|
Sofinco 3x For splitting the payment into three installments |
5131 |
Sofinco 4x For splitting the payment into four installments |
5132 |
Sofinco 3x (interest free) For splitting the payment in three interest-free installments |
5136 |
Sofinco 4x (interest free) For splitting the payment in four interest-free installments |
5137 |
Process flows
- Your customers finalise an order in your shop and select Sofinco 3x/4x.
- You send this CreateHostedCheckout request to our platform.
- You redirect your customers via the redirectUrl to the Sofinco payment page. They confirm the order with their card and personal data.
- We receive the transaction result.
- We redirect your customer to your returnUrl
- You request the transaction result from our platform via GetPaymentDetails or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods / service.
- Sofinco charges your customers automatically for the remaining instalments within the arranged intervals.
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.