Shipping

Shipping Options

When adding e-commerce products to the basket, the cashier will need to enter shipping details, that are included in the sale.

By creating a shipping options integration, your server will be called with the address of the customer, the shop id and the currency code of the base currency in the shop. Your server can then reply with a list of shipping options, where each option contains a price for the delivery, an identifier of your own choice, a title and some details.

The selected option will be included in the sale, and this allows your servers to process the delivery options when placing an order in your e-com system.

[
    {
        "id": "<string, required>",
        "price": "<number, required>",
        "title": "<string, required>",
        "subtitle": "<string, required>"
    }
]