input CreateShippingLabelInput

Fields

FieldTypeDescription
customer_account_idString

Use this when you are a 3PL acting on behalf of one of your customers

carrierString!
shipping_nameString!
shipping_methodString!
costString!
addressAddressInput!
dimensionsDimensionsInput!
labelCreateLabelResourceInput!
line_item_ids[String]!

Specify the line items that should be associated with the label been created. The ids can be shipment line item ids or order line item ids (the ones used to create the shipment line items)

tracking_numberString
shipment_idString!

Referenced By

Example

{
  "customer_account_id": "abc123",
  "carrier": "abc123",
  "shipping_name": "abc123",
  "shipping_method": "abc123",
  "cost": "abc123",
  "address": AddressInput,
  "dimensions": DimensionsInput,
  "label": CreateLabelResourceInput,
  "line_item_ids": "abc123",
  "tracking_number": "abc123",
  "shipment_id": "abc123"
}