Skip to main content

4 posts tagged with "Carrier"

News about supported carriers and products

View All Tags

New field in Carrier Setup file

· One min read

Carrier setup files now include a new field, service_point_product, which indicates whether a product is a service point product or not. Read the full guide on how to retrieve and use the carrier setup file here.

Example

[
{
"code": "gls",
"name": "GLS Denmark",
"products": [
{
"name": "Shop Delivery",
"code": "GLSDK_SD",
"service_point_product": true,
"country_combinations": [{...}]
},
{
"name": "Private Delivery Parcel",
"code": "GLSDK_HD",
"service_point_product": false,
"country_combinations": [{...}]
}
]
}
]

IOSS (Import One Stop Shop) - Service available

· One min read

Shipmondo now supports IOSS (Import One Stop Shop). It is currently supported on shipments with Bring, DHL Express, DSV XPress, FedEx and UPS.

Use the service code IOSS when booking a shipment to use it.

You can register your IOSS number under Company information

Example - specifying IOSS when booking a shipment

{
...
"service_codes": "IOSS",
...
"sender": {
...
"vat_id": "IMxxxyyyyyyz",
...
},
...
}
info

Specifying sender.vat_id is optional. If not provided, the IOSS specified in your Shipmondo account will be used

DSV XPress - Pickup changed to a service

· One min read
info

This change takes effect on 2024-09-10. The service is already available, but it will have no effect until this

To extend the possiblities of using DSV XPress, pickup will no longer be automatically booked.

From 2024-09-10 it will be required to include the service code PICKUP if you wish to book pickup with your DSV XPress shipments.

Example

Before

{
...
"service_codes": "DEPARTURE_NOTIFICATION"
...
}

After

{
...
"service_codes": "DEPARTURE_NOTIFICATION,PICKUP"
...
}