Releases

Changes to our api are documented here.

v3.0.0 released bringing a lot of changes

Below a summary of the changes from v2 API to v3

Authentication

We changed the way to authenticate from using a PAT (personal access token) to OAuth. You will need a clientID and clientSecret to get an access token (expires after 1 hour). You can use this access token to authorize your API calls. More info here.

Common (for all models)

All enum-values are now lower case (f.a. outbound status 'FULLY_SHIPPED' now is 'fully_shipped')

Product / Variant changes

Variants do not exist anymore, we only have products now. That means that every "v2 variant" should now be a (v3-)product with a unique sku. The corresponding variant endpoints are removed.

NameMutationDescription
skuAddedUnique stock keeping unit SKU for the product (moved from variant)
barcodeAddedThe scannable barcode of the product (moved from variant)
widthAddedThe width of the product in millimeters (moved from variant)
heightAddedThe height of the product in millimeters (moved from variant)
lengthAddedThe length of the product in millimeters (moved from variant)
weightAddedThe weight of the product in millimeters (moved from variant)
stockAddedreadonly, moved from variant
refRemovedRemoved replaced by sku
variantsRemovedVariants are removed

Outbound changes

NameMutationDescription
shipmentMethodCodeAddedTell us how you want us to ship this outbound. Valid values can be found in your partner portal under settings/shipping.
shippingRemovedReplaced by shipmentMethodCode
shipToCityModifiedMax length now is 30 characters
shippingContactCityModifiedMax length now is 30 characters

OutboundLine changes

NameMutationDescription
skuAddedUnique reference to the product by sku
variantRefRemovedReplaced by sku

ShipmentLine changes

NameMutationDescription
skuAddedUnique reference to the product by sku
variantRefRemovedReplaced by sku

InboundLine changes

NameMutationDescription
refAddedUnique reference that identifies the inboundLine
skuAddedUnique reference to the product by sku
sequenceRemovedReplaced by ref
variantRefRemovedReplaced by sku

ReceiptLine changes

NameMutationDescription
inboundLineRefAddedUnique reference that identifies the inboundLine
skuAddedUnique reference to the product by sku
inboundLineSequenceRemovedReplaced by inboundLineRef
variantRefRemovedReplaced by sku