Skip to main content

TypeAlias.ProductImportItem

type ProductImportItem = z.infer<typeof productImportItemSchema>;

Single product item for bulk import.

Represents a product to be imported via the bulk import API.

Example

const item: ProductImportItem = {
externalId: "SKU-12345",
name: "Organic T-Shirt",
status: DppProductStatus.Active,
fields: { color: "blue", size: "M" },
certifiedPaths: ["/materials/organic"]
};