GET
/
v1
/
shippingmethods
curl --request GET \
  --url https://api.quickbutik.com/v1/shippingmethods \
  --header 'Authorization: Basic <encoded-value>'
{
  "results": [
    {
      "id": "4",
      "title": "Postnord Företag",
      "description": "<string>",
      "active": "1",
      "price": "<string>",
      "price_basedon": "weight",
      "countries": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication using Basic Auth. Use your API key as both username and password. See the Authentication guide for complete setup instructions.

Query Parameters

shipping_id
string

Optional. Enter if you would like to fetch a specific shipping_id

Response

200
application/json

Shipping methods retrieved successfully

The response is of type object.