Latest
Current, actionable announcements for API consumers.
This page is intentionally short — only current, actionable announcements. Older entries move to the Archive once they stop being immediately relevant.
Catalog API: Migrate to V3
V3 improved the underlying paging mechanism for significantly faster traversal of the full catalog. V1 is deprecated — remaining users will be notified before it's removed. V2 deprecated virtualStockQuantity in favor of stockQuantity.
What to do: update the endpoint path from /v1/ or /v2/ to /v3/. Review the response for the stockQuantity and minimumOrderQuantity fields, and confirm your paging logic follows V3's startAfterPart behavior — leave it empty for the first page, then pass the last part number from the previous page's response to continue.
| Field | V1 | V2 | V3 |
|---|---|---|---|
| Stock quantity | virtualStockQuantity | stockQuantity (renamed from V1) | stockQuantity |
| Minimum order quantity | not present | minimumOrderQuantity (added) | minimumOrderQuantity |
| Catalog paging | — | — | startAfterPart, with faster underlying traversal |
See the Catalog V3 Reference for the full endpoint list, or the Catalog overview for a quick start.