ItemProductInput Input
Description
Input fields for creating or updating a product item, including product information, images, identifiers, and optional gift card configuration.
Declaration
input ItemProductInput {
title: String
images: [ItemImageInput]
identifiers: [ItemIdentifierInput]
manufacturer: String
cat: String
type: String
weight: Int
assetLink: String
giftCard: ItemProductGiftCardInput
}
Fields
| Name | Type | Description |
|---|---|---|
title | String | Title of the product. |
images | [ItemImageInput] | List of images associated with the product. |
identifiers | [ItemIdentifierInput] | List of identifiers such as barcodes, SKUs, or catalog numbers. |
manufacturer | String | Manufacturer name of the product. |
cat | String | Catalog number or product code assigned by the manufacturer. |
type | String | Product type or category. |
weight | Int | Weight of the product in grams. |
assetLink | String | Link to an external asset or resource related to the product. |
giftCard | ItemProductGiftCardInput | Gift card configuration for products that generate gift cards upon purchase. |