Logotype
For developers
By Qliro
Select search filters:
0
0
/
/
B2B
B2B flow. How to enable it and available functionality.
Overview
If you are selling not only to consumers but also organizations you are going to need support for that in the checkout. Qliro supports B2B and this functionality uses the same API as the B2C checkout. However, when an organization is completing a purchase they will be presented with other options in the checkout.
The B2B checkout offers the following features:
  • Possibility to enable it for either B2C, B2B or both. If it's enabled for both the customer can choose to complete the purchase as an organization or as an individual. 
  • Enter organization number instead of personal number.
  • Available payment methods: Qliro Invoice, cards and Paypal. 
  • Businesses have the option to send their order to an alternative shipping address.
  • Support for displaying VAT number on the invoices and displaying VAT separately in the checkout.
  • Support for e-invoice using PEPPOL-ID instead of physical or email invoices.
  • Credit invoice for returns. 
How-to
Enable the B2B flow
The parameter EnforcedJuridicalType determines what flow should be enabled in the checkout. There two different options to enable B2B flow. 
  1. If the parameter is not specified, both B2C and B2B flow will be enabled in the checkout.
  2. Set the parameter to "Company" to only enable B2B flow.
1
"EnforcedJuridicalType": "Company",
 
Prefill the customer information
By prefilling the orgazational number the customer will automatically be authenticated. This is done by adding the organizational number to PersonalNumber field and set the JuridicalType to "Company". The Personal will be interpreted as an organizational number. 
You can also pre-fill the VAT number by populating VatNumber.
1
2
3
"PersonalNumber": "1111111111",
"VatNumber": "SE111111111101",
"JuridicalType": "Company",
 
 
Load checkout
Load the checkout by following the steps described here.
Good to know
  • Same listeners are available in the B2B flow as in the B2C flow. Go to listeners for more information.