Skip to main content
PUT
/
api
/
v1
/
shipping-zones
/
{zone_id}
Update Shipping Zone
curl --request PUT \
  --url https://api.launchmystore.io/api/v1/shipping-zones/{zone_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "countries": [
    {}
  ],
  "rates": [
    {}
  ]
}
'
{
  "success": true,
  "data": {
    "id": "zone_domestic",
    "name": "United States",
    "countries": ["US"],
    "rates": [
      {
        "id": "rate_001",
        "name": "Ground Shipping",
        "price": 499,
        "estimated_days_min": 5,
        "estimated_days_max": 7
      }
    ],
    "updated_at": "2024-01-25T10:00:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

zone_id
string
required
The shipping zone ID

Body Parameters

name
string
Zone name
countries
array
Country codes
rates
array
Updated shipping rates

Response

{
  "success": true,
  "data": {
    "id": "zone_domestic",
    "name": "United States",
    "countries": ["US"],
    "rates": [
      {
        "id": "rate_001",
        "name": "Ground Shipping",
        "price": 499,
        "estimated_days_min": 5,
        "estimated_days_max": 7
      }
    ],
    "updated_at": "2024-01-25T10:00:00Z"
  }
}