Skip to main content

Scalability

Catalog operations run at batch scale through jobs — not giant synchronous HTTP payloads.

Patterns

WorkloadPattern
Import 50k SKUsImport job + items + retry per row
Export to AmazonExport job + per-SKU items + failure report
Completeness recalcFamily-wide or product-scoped triggers
AI bulk enrichAsync content jobs with review queue

Integration guidance

  • Poll job status or subscribe to events → Webhooks.
  • Use pagination on list endpoints → Pagination & errors.
  • Idempotent exports via export profiles, not ad-hoc writes per channel.

Poll export job recipe