Getting Started
Interface Basics
Printers and Scales
Shipping
Order Processing
Order Allocation
Order Processing Loop
Packing Solutions
Backorders
Ready to Ship
"Unable to Process" Order status
Address Validation and Classification
Packaging Features
Orders
Custom Fields for Orders
Reference Numbers
Other Shipping Options
Packing Instructions
Shipping Accounts
External Shipping Methods
Third Party Billing
Manifest Couriers
Packing Slip Design
Service Levels and Target Ship Dates
Outbound SSCC Barcodes
International Shipping
Tracking Numbers for Offline Shipments
Serial Number Tracking
Receiving
Deliveries (ASNs, RMAs, etc.)
Double-Scan to Begin Count
Auto-Advance to Put-Away After Processing ASN
Actionable Reports
Catalog
Bill of Materials/Work Orders
Bill of Materials
Bill of Materials - Quantity-types
Work Orders
Import Bill of Materials
Virtual Inventory
Regulations
Products
Product Attributes
Lots/Expirations Tracking
Product Velocity
Import Products
Operations
Warehouse
Picking Classes
Picking Batches
Bulk Fulfill Orders
Manifests (Loading)
License Plates
Time Tracking for Administrators
Time Tracking for Staff
Relocations
Import Locations, Lots and Inventory
Rating
Rate Shopping
Rating Maps
Rate Groups and Plans
Fee Schedules and Adjustments
Virtual Shipping Methods
System
Configuration
Merchants and Brands
Warehouses
User Management
User Roles
User Groups
Login via Badge
Protected Customer Data
Enumerations
Technical Contact
Integrations
Shopify
Integrations Overview
Amazon Merchant Fulfillment
Amazon Selling Partner
CartRover
EasyPost
eHub
External Shipping Method API
Freight Club
Magento 1 / OpenMage
Merchant API Users and Roles
SPS Commerce
ShipStream Plugin Fostering Program
Webhooks
WooCommerce
UPS
Scripting
Scripting Basics
Before Create Order Scripts
Preprocess Packing Solution Scripts
Ready to Ship Time Scripts
Picking Class Shipment Matching Scripts
FAQ
How-To: FedEx Production Key Certification
How-To: Brand-Specific Shipping Account
Pattern and Replacement RegEx
ShipStream's Subprocessors
ISO Alpha-2 Country Codes
Printer Troubleshooting
ShipStream Flow
Release Notes
ShipStream Releases
Version 2024.4
Version 2024.3
Version 2024.2
Version 2024.1
Version 2024.0
Version 2023.2
Version 2023.1
Version 2023.0
Package Tracking API Migration Guide (2023.0)
Version 2022.2
Version 2022.1
Version 2022.0
Version 2021.6
Version 2021.5
Version 2021.4
Version 2021.3
Version 2021.2
Version 2021.1
Version 2021.0
Version 2020.2
Version 2020.1
Version 2020.0
Version 2019.9
Version 2019.8.1
Version 2019.8
Version 2019.7
Version 2019.6
Version 2019.5
Device Hub Client Updates
Table of Contents
- All Categories
- Shipping
- Packaging Features
- Attach Packaging Features to Orders
Attach Packaging Features to Orders
Updated by Kevin
Aside from assigning Packaging Features to specific products with the "Other Special Features" product attribute and the "Always/Never Apply to Goods Type" attribute of Packaging Features, Packaging Features can also be attached to individual orders with more custom or advanced logic.
Some examples of when you would want to attach a Packaging Feature to a specific order would be:
- An Order shipping to a remote location needs extra padding for safer Product arrival
- Certain orders need a special promotional flier added to them, but not all orders
- Combinations of products require a Packaging Features but the individual products alone do not
Therefore, Packaging Features may be attached to an order using the "Other Shipping Options" field in the ways described below.
Admin or Client UI
During Order creation you can add properly formatted JSON to the Other Shipping Options form field.
API order.create
You can attach Packaging Features to an order using the order.create
or order.edit
API endpoints using the other_shipping_options
field.
Scripts
Before Create Order scripts can set the order.options.other_shipping_options
object property.
JSON Format
Whether set through the UI or the API the "Other Shipping Options" field must contain a packaging
key which has details about which Packaging Features to apply to the order. Either the sku
or product_id
may be used to specify the Packaging Features you wish to attach.
If an items
key is specified it is an array of SKUs to which the Packaging Feature will be applied.
- A Packaging Feature with One Scan Per: "Order" or "Package" must not have an
items
key - A Packaging Feature with One Scan Per: "Item" or "Each" must have an
items
key
The example JSON text below is specifying three different Packaging Features in the same order:
- a Packaging Feature referenced by its product_id — this Packaging Feature is either a one scan per Order or Package
- a Packaging Feature referenced by its SKU — this Packaging Feature is also either a one scan per Order or Package
- a Packaging Feature by its SKU that is attached to specific Order Items — this Packaging Feature is either a one scan per Item or Each
{
"packaging": [
{ "product_id": 62},
{ "sku": "TapeLid"},
{ "sku": "BubbleWrap", "items": ["34-737-8757", "29-329-5002"]}
]
}