v1.023
about 4 hours ago
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
- 🔴 BREAKING — Create or Update Receiving (
POST /v1/integrations/receiving): the deprecatedsscc(string|null) property has been removed from eachitems[]entry. Sending it now fails validation withUnrecognized key "sscc". Migration: attach the SSCC at the packaging level viacartons[].identifiers(orpallets[].identifiers) withtype=SSCC, and reference that carton/pallet from the item throughcarton_key. - 🔴 BREAKING — Get Receiving (
GET /v1/integrations/receiving) and Retrieve List of Receivings (GET /v1/integrations/receivings): the deprecatedsscc(string|null) property has been removed from eachreceiving_lines[]entry (previously a required, nullable field). Migration: read the SSCC from theidentifiersarray (type=SSCC) of the carton or pallet that the line references viacarton_key/loose_units_pallet_key.
🛠 Schema & Property Updates
None