Etsy · JSON Structure

Open Api V3 Shop Shipping Profile Structure

Represents a profile used to set a listing's shipping information. Please note that it's not possible to create calculated shipping templates via the API. However, you can associate calculated shipping profiles created from Shop Manager with listings using the API.

Type: object Properties: 11
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

ShopShippingProfile is a JSON Structure definition published by Etsy, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

shipping_profile_id title user_id origin_country_iso is_deleted shipping_profile_destinations shipping_profile_upgrades origin_postal_code profile_type domestic_handling_fee international_handling_fee

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etsy/refs/heads/main/json-structure/open-api-v3-shop-shipping-profile-structure.json",
  "name": "ShopShippingProfile",
  "description": "Represents a profile used to set a listing's shipping information. Please note that it's not possible to create calculated shipping templates via the API. However, you can associate calculated shipping profiles created from Shop Manager with listings using the API.",
  "type": "object",
  "properties": {
    "shipping_profile_id": {
      "type": "int64",
      "description": "The numeric ID of the shipping profile.",
      "minimum": 1,
      "example": 1
    },
    "title": {
      "type": "string",
      "description": "The name string of this shipping profile.",
      "nullable": true,
      "example": "Handmade Ceramic Mug \u2014 Stoneware"
    },
    "user_id": {
      "type": "int64",
      "description": "The numeric ID for the [user](/documentation/reference#tag/User) who owns the shipping profile.",
      "minimum": 1,
      "example": 456789
    },
    "origin_country_iso": {
      "type": "string",
      "description": "The ISO code of the country from which the listing ships.",
      "format": "ISO 3166-1 alpha-2",
      "example": "US"
    },
    "is_deleted": {
      "type": "boolean",
      "description": "When true, someone deleted this shipping profile.",
      "example": true
    },
    "shipping_profile_destinations": {
      "type": "array",
      "description": "A list of [shipping profile destinations](/documentation/reference/#operation/createShopShippingProfileDestination) available for this shipping profile.",
      "items": {
        "description": "A list of [shipping profile destinations](/documentation/reference/#operation/createShopShippingProfileDestination) available for this shipping profile.",
        "oneOf": [
          {
            "$ref": "#/components/schemas/ShopShippingProfileDestination"
          }
        ]
      }
    },
    "shipping_profile_upgrades": {
      "type": "array",
      "description": "A list of [shipping profile upgrades](/documentation/reference/#operation/createShopShippingProfileUpgrade) available for this shipping profile.",
      "items": {
        "description": "A list of [shipping profile upgrades](/documentation/reference/#operation/createShopShippingProfileUpgrade) available for this shipping profile.",
        "oneOf": [
          {
            "$ref": "#/components/schemas/ShopShippingProfileUpgrade"
          }
        ]
      }
    },
    "origin_postal_code": {
      "type": "string",
      "description": "The postal code string (not necessarily a number) for the location from which the listing ships. Required if the `origin_country_iso` supports postal codes. See the [Fulfillment Tutorial docs](https://developer.etsy.com/documentation/tutorials/fulfillment/#countries-requiring-postal-codes) for more info",
      "nullable": true,
      "example": "11201"
    },
    "profile_type": {
      "type": "string",
      "enum": [
        "manual",
        "calculated"
      ],
      "default": "manual",
      "example": "manual"
    },
    "domestic_handling_fee": {
      "type": "float",
      "description": "The domestic handling fee added to buyer's shipping total - only available for calculated shipping profiles.",
      "minimum": 0,
      "default": 0,
      "example": 1.0
    },
    "international_handling_fee": {
      "type": "float",
      "description": "The international handling fee added to buyer's shipping total - only available for calculated shipping profiles.",
      "minimum": 0,
      "default": 0,
      "example": 1.0
    }
  }
}