Shipping rates

Introduction

Through the endpoint included in the Shipping rates section, you will be able to:

  • Get information about shipping rates

Endpoints

Calculate shipping rates

post

This endpoint calculate shipping rates by given address and products

Authorizations
Body
Responses
200
OK
application/json
post
POST /api/v1/shipment/rates HTTP/1.1
Host: api.merchone.com
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 102

{
  "address": {
    "zipcode": "10115",
    "country": "DE"
  },
  "order": [
    {
      "product_sku": "CVS0200201LWF2",
      "quantity": 1
    }
  ]
}
{
  "data": [
    {
      "type": "tracked",
      "cost": 5,
      "currency": "EUR"
    }
  ]
}

Last updated