ShipStation · Schema

LabelCreateRequest

EcommerceLabelsLogisticsOrder ManagementShippingWarehousing

Properties

Name Type Description
orderId integer
carrierCode string
serviceCode string
packageCode string
confirmation string
shipDate string
weight object
dimensions object
insuranceOptions object
internationalOptions object
advancedOptions object
testLabel boolean
View JSON Schema on GitHub

JSON Schema

shipstation-labelcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LabelCreateRequest",
  "title": "LabelCreateRequest",
  "type": "object",
  "required": [
    "orderId",
    "carrierCode",
    "serviceCode",
    "packageCode",
    "weight"
  ],
  "properties": {
    "orderId": {
      "type": "integer"
    },
    "carrierCode": {
      "type": "string"
    },
    "serviceCode": {
      "type": "string"
    },
    "packageCode": {
      "type": "string"
    },
    "confirmation": {
      "type": "string"
    },
    "shipDate": {
      "type": "string",
      "format": "date"
    },
    "weight": {
      "$ref": "#/components/schemas/Weight"
    },
    "dimensions": {
      "$ref": "#/components/schemas/Dimensions"
    },
    "insuranceOptions": {
      "type": "object"
    },
    "internationalOptions": {
      "type": "object"
    },
    "advancedOptions": {
      "type": "object"
    },
    "testLabel": {
      "type": "boolean"
    }
  }
}