v1.023

The deprecated sscc field has been removed from the Receiving API.
The item/line-level sscc field — deprecated since v1.012 with a published removal date of 2026-06-30 — has been removed from both the Create/Update Receiving request and the Receiving responses. An SSCC is now represented exclusively through the typed carton/pallet identifier arrays. This is a breaking change for any integration still sending or reading the field.


🚀 New Endpoints

None

❌ Removed

  • 🔴 BREAKINGCreate or Update Receiving (POST /v1/integrations/receiving): the deprecated sscc (string|null) property has been removed from each items[] entry. Sending it now fails validation with Unrecognized key "sscc". Migration: attach the SSCC at the packaging level via cartons[].identifiers (or pallets[].identifiers) with type = SSCC, and reference that carton/pallet from the item through carton_key.
  • 🔴 BREAKINGGet Receiving (GET /v1/integrations/receiving) and Retrieve List of Receivings (GET /v1/integrations/receivings): the deprecated sscc (string|null) property has been removed from each receiving_lines[] entry (previously a required, nullable field). Migration: read the SSCC from the identifiers array (type = SSCC) of the carton or pallet that the line references via carton_key / loose_units_pallet_key.

🛠 Schema & Property Updates

None