Integration
Save time by automating your workflow
Integrate Shipmondo with your systems and automate your freight booking. Your order and shipment information is automatically imported and you can customize the integrations for your workflow and decide the degree of automation. You can connect your systems in several ways.
E-commerce systems
Connect your webshop or e-commerce tool and manage orders and shipping in one system. Pick, pack and print shipping labels efficiently while keeping your customers informed during the process.
ERP and accounting systems
Have your orders automatically imported to Shipmondo. Import orders/invoices from your accounting system, book freight, and print shipping labels for your orders. Got a webshop? Automate your bookkeeping of sales orders in your accounting system.
Payment gateways
Integrate your payment gateways and manage orders and payments in Shipmondo. Capture payments and make refunds as an incorporated part of your workflow and return flow.
// Create shipment (code example in JavaScript)
const data = JSON.stringify({
own_agreement: false,
label_format: 'a4_pdf',
product_code: 'GLSDK_SD',
service_codes: 'EMAIL_NT,SMS_NT',
reference: 'Order 10001',
automatic_select_service_point: true,
parties: [
{
type: 'sender',
name: 'Min Virksomhed ApS',
attention: 'Lene Hansen',
address1: 'Hvilehøjvej 25',
postal_code: '5220',
city: 'Odense SØ',
country_code: 'DK',
email: 'info@minvirksomhed.dk',
phone: '70400407'
},
{
type: 'receiver',
name: 'Lene Hansen',
address1: 'Skibhusvej 52',
postal_code: '5000',
city: 'Odense C',
country_code: 'DK',
email: 'lene@email.dk',
phone: '12345678'
}
],
parcels: [
{
weight: 1000
}
]
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('POST', 'https://app.shipmondo.com/api/public/v3/shipments');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');
xhr.setRequestHeader('Authorization', 'Basic 123');
xhr.send(data);For developers: A complete API solution
Got specific needs for your order and freight management? Build your very own solution with our RESTful API and get a customized setup that fits your needs. Connect Shipmondo to your system and customize booking etc. to your workflow.
Visit our Shipmondo.devAutomate your flow with Shipmondo Print Client

Need any help?
If you have any questions or need any help, please don't hesitate to contact us.