Shipping rates
Last updated
Last updated
This endpoint calculate shipping rates by given address and products
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"
}
]
}