# Offers

An Offer in Violet refers to a specific product offered by a merchant. While some platforms use the term "Products," we have chosen to use the term "Offer" to refer to these products. Offers are used to provide detailed information about specific aspects of a product, including variations. Each combination of these variations is referred to as a SKU, which is also included in the Offer object.

Each Offer in Violet has a unique Offer ID, which allows for easy identification of individual offers. An offer also has an External ID, which is the ID assigned by the e-commerce platform.

Every Offer includes nested data for each individual SKU available from the merchant. Violet provides SKUs as part of the Offer response, allowing you to use them to populate your Product Detail Page (PDP) with all available variants. Additionally, the Offer includes the Merchant ID and structured media albums.

You can interact with our Offer model using our [Catalog APIs](/api-reference/catalog/offers.md), and a sample `Offer` can be seen below:

<details>

<summary>Sample Response</summary>

```json
{
    "id": 39041,
    "product_id": "206bc004966b4883a737d7ec1f25c557",
    "external_id": "8335219130669",
    "external_url": "https://the-violet-garden.myshopify.com/products/dancing-sneaker-green",
    "name": "Dancing Sneaker Green",
    "description": "Dancing sneakers in a beautiful green.",
    "html_description": "<p>Dancing sneakers in a beautiful green.</p>",
    "source": "SHOPIFY",
    "seller": "the violet garden",
    "vendor": "The Violet Garden",
    "merchant_id": 10189,
    "available": true,
    "visible": true,
    "min_price": 13500,
    "max_price": 13500,
    "currency": "USD",
    "source_category_name": "",
    "meta": [],
    "variants": [
        {
            "id": 858860,
            "external_id": "10558450303277",
            "name": "Style",
            "visual": true,
            "values": [
                {
                    "id": 6049067,
                    "external_id": "Design Two",
                    "name": "Design Two",
                    "sku_ids": [
                        196611,
                        196598,
                        196602,
                        196600,
                        196616,
                        196606
                    ],
                    "display_order": 2
                },
                {
                    "id": 6049070,
                    "external_id": "Design One",
                    "name": "Design One",
                    "sku_ids": [
                        196609,
                        196613,
                        196597,
                        196612,
                        196601,
                        196605
                    ],
                    "display_order": 1
                },
                {
                    "id": 6049069,
                    "external_id": "Design Four",
                    "name": "Design Four",
                    "sku_ids": [
                        196595,
                        196599,
                        196596,
                        196603,
                        196607,
                        196604
                    ],
                    "display_order": 4
                },
                {
                    "id": 6049068,
                    "external_id": "Design Three",
                    "name": "Design Three",
                    "sku_ids": [
                        196594,
                        196610,
                        196608,
                        196593,
                        196615,
                        196614
                    ],
                    "display_order": 3
                }
            ],
            "display_order": 2
        },
        {
            "id": 858861,
            "external_id": "10558450270509",
            "name": "Size",
            "visual": false,
            "values": [
                {
                    "id": 6049076,
                    "external_id": "43",
                    "name": "43",
                    "sku_ids": [
                        196614,
                        196597,
                        196600,
                        196604
                    ],
                    "display_order": 6
                },
                {
                    "id": 6049071,
                    "external_id": "38",
                    "name": "38",
                    "sku_ids": [
                        196594,
                        196602,
                        196601,
                        196607
                    ],
                    "display_order": 1
                },
                {
                    "id": 6049074,
                    "external_id": "41",
                    "name": "41",
                    "sku_ids": [
                        196609,
                        196608,
                        196598,
                        196599
                    ],
                    "display_order": 4
                },
                {
                    "id": 6049075,
                    "external_id": "42",
                    "name": "42",
                    "sku_ids": [
                        196610,
                        196613,
                        196596,
                        196616
                    ],
                    "display_order": 5
                },
                {
                    "id": 6049073,
                    "external_id": "40",
                    "name": "40",
                    "sku_ids": [
                        196615,
                        196603,
                        196606,
                        196605
                    ],
                    "display_order": 3
                },
                {
                    "id": 6049072,
                    "external_id": "39",
                    "name": "39",
                    "sku_ids": [
                        196611,
                        196595,
                        196593,
                        196612
                    ],
                    "display_order": 2
                }
            ],
            "display_order": 1
        }
    ],
    "skus": [
        {
            "id": 196603,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326008621",
            "name": "Dancing Sneaker Green - 40 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91022,
                    "parent_id": 196603,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 40 / Design Four Media",
                    "media": [
                        {
                            "id": 185738,
                            "album_id": 91022,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185738,
                        "album_id": 91022,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "40"
                },
                {
                    "variant": "Style",
                    "value": "Design Four"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196614,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326401837",
            "name": "Dancing Sneaker Green - 43 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91033,
                    "parent_id": 196614,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 43 / Design Three Media",
                    "media": [
                        {
                            "id": 185749,
                            "album_id": 91033,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185749,
                        "album_id": 91033,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "43"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196599,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326139693",
            "name": "Dancing Sneaker Green - 41 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91018,
                    "parent_id": 196599,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 41 / Design Four Media",
                    "media": [
                        {
                            "id": 185734,
                            "album_id": 91018,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185734,
                        "album_id": 91018,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Four"
                },
                {
                    "variant": "Size",
                    "value": "41"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196616,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326205229",
            "name": "Dancing Sneaker Green - 42 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91035,
                    "parent_id": 196616,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 42 / Design Two Media",
                    "media": [
                        {
                            "id": 185751,
                            "album_id": 91035,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185751,
                        "album_id": 91035,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Two"
                },
                {
                    "variant": "Size",
                    "value": "42"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196597,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326303533",
            "name": "Dancing Sneaker Green - 43 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91016,
                    "parent_id": 196597,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 43 / Design One Media",
                    "media": [
                        {
                            "id": 185732,
                            "album_id": 91016,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185732,
                        "album_id": 91016,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design One"
                },
                {
                    "variant": "Size",
                    "value": "43"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196602,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325648173",
            "name": "Dancing Sneaker Green - 38 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91021,
                    "parent_id": 196602,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 38 / Design Two Media",
                    "media": [
                        {
                            "id": 185737,
                            "album_id": 91021,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185737,
                        "album_id": 91021,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "38"
                },
                {
                    "variant": "Style",
                    "value": "Design Two"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196604,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326467373",
            "name": "Dancing Sneaker Green - 43 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91023,
                    "parent_id": 196604,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 43 / Design Four Media",
                    "media": [
                        {
                            "id": 185739,
                            "album_id": 91023,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185739,
                        "album_id": 91023,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Four"
                },
                {
                    "variant": "Size",
                    "value": "43"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196609,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326041389",
            "name": "Dancing Sneaker Green - 41 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91028,
                    "parent_id": 196609,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 41 / Design One Media",
                    "media": [
                        {
                            "id": 185744,
                            "album_id": 91028,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185744,
                        "album_id": 91028,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design One"
                },
                {
                    "variant": "Size",
                    "value": "41"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196598,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326074157",
            "name": "Dancing Sneaker Green - 41 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91017,
                    "parent_id": 196598,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 41 / Design Two Media",
                    "media": [
                        {
                            "id": 185733,
                            "album_id": 91017,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185733,
                        "album_id": 91017,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Two"
                },
                {
                    "variant": "Size",
                    "value": "41"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196600,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326336301",
            "name": "Dancing Sneaker Green - 43 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91019,
                    "parent_id": 196600,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 43 / Design Two Media",
                    "media": [
                        {
                            "id": 185735,
                            "album_id": 91019,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185735,
                        "album_id": 91019,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Two"
                },
                {
                    "variant": "Size",
                    "value": "43"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196595,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325877549",
            "name": "Dancing Sneaker Green - 39 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 9,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91014,
                    "parent_id": 196595,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 39 / Design Four Media",
                    "media": [
                        {
                            "id": 185730,
                            "album_id": 91014,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185730,
                        "album_id": 91014,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "39"
                },
                {
                    "variant": "Style",
                    "value": "Design Four"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196605,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325910317",
            "name": "Dancing Sneaker Green - 40 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91024,
                    "parent_id": 196605,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 40 / Design One Media",
                    "media": [
                        {
                            "id": 185740,
                            "album_id": 91024,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185740,
                        "album_id": 91024,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design One"
                },
                {
                    "variant": "Size",
                    "value": "40"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196601,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325615405",
            "name": "Dancing Sneaker Green - 38 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91020,
                    "parent_id": 196601,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 38 / Design One Media",
                    "media": [
                        {
                            "id": 185736,
                            "album_id": 91020,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185736,
                        "album_id": 91020,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design One"
                },
                {
                    "variant": "Size",
                    "value": "38"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196611,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325812013",
            "name": "Dancing Sneaker Green - 39 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91030,
                    "parent_id": 196611,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 39 / Design Two Media",
                    "media": [
                        {
                            "id": 185746,
                            "album_id": 91030,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185746,
                        "album_id": 91030,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "39"
                },
                {
                    "variant": "Style",
                    "value": "Design Two"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196612,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325779245",
            "name": "Dancing Sneaker Green - 39 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 4,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91031,
                    "parent_id": 196612,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 39 / Design One Media",
                    "media": [
                        {
                            "id": 185747,
                            "album_id": 91031,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185747,
                        "album_id": 91031,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "39"
                },
                {
                    "variant": "Style",
                    "value": "Design One"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196606,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325943085",
            "name": "Dancing Sneaker Green - 40 / Design Two",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 8,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91025,
                    "parent_id": 196606,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 40 / Design Two Media",
                    "media": [
                        {
                            "id": 185741,
                            "album_id": 91025,
                            "external_id": "41484160860461",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185741,
                        "album_id": 91025,
                        "external_id": "41484160860461",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "40"
                },
                {
                    "variant": "Style",
                    "value": "Design Two"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196610,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326237997",
            "name": "Dancing Sneaker Green - 42 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91029,
                    "parent_id": 196610,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 42 / Design Three Media",
                    "media": [
                        {
                            "id": 185745,
                            "album_id": 91029,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185745,
                        "album_id": 91029,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "42"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196607,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325713709",
            "name": "Dancing Sneaker Green - 38 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91026,
                    "parent_id": 196607,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 38 / Design Four Media",
                    "media": [
                        {
                            "id": 185742,
                            "album_id": 91026,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185742,
                        "album_id": 91026,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Size",
                    "value": "38"
                },
                {
                    "variant": "Style",
                    "value": "Design Four"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196613,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326172461",
            "name": "Dancing Sneaker Green - 42 / Design One",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91032,
                    "parent_id": 196613,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 42 / Design One Media",
                    "media": [
                        {
                            "id": 185748,
                            "album_id": 91032,
                            "external_id": "41484161155373",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185748,
                        "album_id": 91032,
                        "external_id": "41484161155373",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design One"
                },
                {
                    "variant": "Size",
                    "value": "42"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196608,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326106925",
            "name": "Dancing Sneaker Green - 41 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91027,
                    "parent_id": 196608,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 41 / Design Three Media",
                    "media": [
                        {
                            "id": 185743,
                            "album_id": 91027,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185743,
                        "album_id": 91027,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "41"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196594,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325680941",
            "name": "Dancing Sneaker Green - 38 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91013,
                    "parent_id": 196594,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 38 / Design Three Media",
                    "media": [
                        {
                            "id": 185729,
                            "album_id": 91013,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185729,
                        "album_id": 91013,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "38"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196596,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101326270765",
            "name": "Dancing Sneaker Green - 42 / Design Four",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91015,
                    "parent_id": 196596,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 42 / Design Four Media",
                    "media": [
                        {
                            "id": 185731,
                            "album_id": 91015,
                            "external_id": "41484160827693",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185731,
                        "album_id": 91015,
                        "external_id": "41484160827693",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Four"
                },
                {
                    "variant": "Size",
                    "value": "42"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196593,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325844781",
            "name": "Dancing Sneaker Green - 39 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 10,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91012,
                    "parent_id": 196593,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 39 / Design Three Media",
                    "media": [
                        {
                            "id": 185728,
                            "album_id": 91012,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185728,
                        "album_id": 91012,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "39"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:23+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        },
        {
            "id": 196615,
            "offer_id": 39041,
            "merchant_id": 10189,
            "external_id": "45101325975853",
            "name": "Dancing Sneaker Green - 40 / Design Three",
            "gtin": "",
            "upc": "",
            "in_stock": true,
            "qty_available": 9,
            "inventory_tracked": true,
            "sale_price": 13500,
            "retail_price": 13500,
            "currency": "USD",
            "taxable": true,
            "tax_type": "DEFAULT",
            "albums": [
                {
                    "id": 91034,
                    "parent_id": 196615,
                    "type": "SKU",
                    "name": "Dancing Sneaker Green - 40 / Design Three Media",
                    "media": [
                        {
                            "id": 185750,
                            "album_id": 91034,
                            "external_id": "41484160958765",
                            "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                            "type": "IMAGE",
                            "display_order": 1,
                            "primary": true
                        }
                    ],
                    "primary_media": {
                        "id": 185750,
                        "album_id": 91034,
                        "external_id": "41484160958765",
                        "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                        "type": "IMAGE",
                        "display_order": 1,
                        "primary": true
                    }
                }
            ],
            "variant_values": [
                {
                    "variant": "Style",
                    "value": "Design Three"
                },
                {
                    "variant": "Size",
                    "value": "40"
                }
            ],
            "type": "PHYSICAL",
            "status": "AVAILABLE",
            "date_created": "2023-05-01T20:08:24+0000",
            "date_last_modified": "2023-08-07T15:02:53+0000",
            "sku_dimensions": {
                "weight": 3.0,
                "type": "SKU"
            }
        }
    ],
    "albums": [
        {
            "id": 90986,
            "parent_id": 39041,
            "type": "OFFER",
            "name": "Primary Album",
            "media": [
                {
                    "id": 185752,
                    "album_id": 90986,
                    "external_id": "41484161155373",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                    "type": "IMAGE",
                    "display_order": 1,
                    "primary": true
                },
                {
                    "id": 185753,
                    "album_id": 90986,
                    "external_id": "41484160958765",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_85d6d1fe-b49c-4d4b-97b6-0bef6815cfbb.png",
                    "type": "IMAGE",
                    "display_order": 3,
                    "primary": false
                },
                {
                    "id": 185755,
                    "album_id": 90986,
                    "external_id": "41484160860461",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_79f40a05-4ede-4cd0-ad76-4f301bf0aa57.png",
                    "type": "IMAGE",
                    "display_order": 2,
                    "primary": false
                },
                {
                    "id": 185677,
                    "album_id": 90986,
                    "external_id": "41484160925997",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_d793242c-e9da-4b37-844d-2636695bf4f8.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_d793242c-e9da-4b37-844d-2636695bf4f8.png",
                    "type": "IMAGE",
                    "display_order": 6,
                    "primary": false
                },
                {
                    "id": 185754,
                    "album_id": 90986,
                    "external_id": "41484160991533",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_a0b733cd-321a-4e85-b925-722b9bb8eb67.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_a0b733cd-321a-4e85-b925-722b9bb8eb67.png",
                    "type": "IMAGE",
                    "display_order": 4,
                    "primary": false
                },
                {
                    "id": 185678,
                    "album_id": 90986,
                    "external_id": "41484160827693",
                    "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                    "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_158776f7-2cd6-4c39-9c89-ab1a95924100.png",
                    "type": "IMAGE",
                    "display_order": 5,
                    "primary": false
                }
            ],
            "primary_media": {
                "id": 185752,
                "album_id": 90986,
                "external_id": "41484161155373",
                "url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                "source_url": "https://cdn.shopify.com/s/files/1/0758/9363/7421/files/wealthy_floral_design_shoes_floating_with_a_green_pastel_colour_6d8d2c39-c9b3-4943-a41e-0214bf0df19c.png",
                "type": "IMAGE",
                "display_order": 1,
                "primary": true
            }
        }
    ],
    "three_denabled": false,
    "type": "PHYSICAL",
    "status": "AVAILABLE",
    "publishing_status": "PUBLISHED",
    "date_created": "2023-05-01T20:08:23+0000",
    "date_last_modified": "2023-08-07T15:02:53+0000",
    "commission_rate": 25.0,
    "currency_symbol": "$",
    "subscription_status": "NOT_SUBSCRIBED",
    "tags": [
        "madebymidjourney"
    ]
}
```

</details>

{% hint style="info" %}
Generating a map of available SKUs for an individual offer across multiple variant types (such as color, size, etc.) can be a complex algorithm to implement correctly while integrating with Violet.
{% endhint %}

## Offer Descriptions

Offers may include two description fields to provide flexibility in how product descriptions are displayed:

* **`description`** - Plain text description, available for all offers
* **`html_description`** - HTML-formatted description, available for Shopify offers only

### Description Field Behavior

**For Shopify Offers:**

* Both `description` and `html_description` fields are populated
* `description` contains clean plain text with HTML tags stripped
* `html_description` preserves the original HTML formatting from Shopify

**For Non-Shopify Offers:**

* Only `description` is populated
* `html_description` will be `null`

### Implementation Guidelines

**Best Practices:**

* Always implement fallback logic to use `description` when `html_description` is `null`
* Check the platform type or `html_description` availability before attempting to render HTML content

For offers from other platforms, the `html_description` field would be `null`.

***

### Important Note on `html_description` Field (July 15, 2025)

As of July 15, 2025, Violet updated the behavior of the `html_description` field for Shopify offers. Previously, this field was populated with sanitized HTML content, which may have excluded certain formatting or embedded elements from the original Shopify product description. After this change, the `html_description` property now contains the raw HTML exactly as provided by Shopify, preserving all original formatting and markup.

This update enables more accurate rendering of product descriptions and improves parity with Shopify's own storefronts. However, it also means that the HTML may contain elements that were previously sanitized out.

If you observe that an offer's `html_description` appears incomplete or missing expected formatting, it may be due to the offer not having been updated or sold since the July 15, 2025 change. Some offers may still have the legacy, sanitized `html_description` value until they are next modified or resynced by Violet. See below for steps to resolve this.

{% hint style="info" %}
To manually re-sync an offer's `html_description`, go to the [Violet Channel dashboard](https://channel.violet.io/offers), locate the offer, and use the "Re-Sync Offer" action. This will immediately fetch the latest product description (including raw HTML) from Shopify.
{% endhint %}

***

### What statuses can be associated with an Offer?

* **`UNAVAILABLE`** This status for an offer means that the product associated with the offer is currently out of stock or not available for purchase. This status indicates that while the offer exists in the Violet system, it cannot be sold or purchased at the moment.
* **`AVAILABLE`** This status for an offer means that the product associated with the offer is currently in stock and ready for purchase.
* **`DISABLED_UNAVAILABLE`** This status indicates that an offer is currently disabled and the associated product is unavailable. This status typically occurs when a merchant's offers are disabled as a whole, and the underlying product was already unavailable or out of stock before the disablement.
* **`DISABLED_AVAILABLE`** This status means that an offer is currently disabled but the associated product is still available. This status typically occurs when a merchant's offers are disabled as a whole, but the underlying product remains in stock or available on the merchant's platform.
* **`FOR_DELETION`** This status means that an offer has been marked for eventual removal from the Violet system. This status typically occurs after an offer has been in the **`ARCHIVED`** state for an extended period.
* **`ARCHIVED`** This status means that a product has been deleted or removed from the merchant's platform, but Violet hasn't immediately deleted it from its system.

<details>

<summary>As a Channel, how should I interpret or act upon each status?</summary>

* **`UNAVAILABLE`** The channel would confirm with the merchant that the offer is correctly set up in their store, and if it is, they can use the dashboard to re-sync the offer. If there is still an issue after a re-sync, contacting support would be the next step.
* **`AVAILABLE`** Unless the offer should *not* be available, there is nothing needed here. The channel can re-sync an offer via the dashboard, and contact support if that doesn’t resolve the issue.
* **`DISABLED_UNAVAILABLE` / `DISABLED_AVAILABLE`** Both of the “disabled” statuses are due to a merchant being disabled, so a channel would need to handle that situation, first. They are also automatically updated when a merchant is disabled or re-enabled, so the channel would generally not need to do anything. If the status hasn’t be automatically updated, and the merchant’s status is enabled, then a re-sync via the dashboard should resolve the issue. Otherwise, raising a ticket to support would be the next step.
* **`FOR_DELETION`** Offers in this state were already in an **`ARCHIVED`** status for an extended period of time, and so likely the channel wouldn’t need to do anything here. If this is an error, a re-sync via the dashboard should fix it, else raising a ticket to support would be the next step.
* **`ARCHIVED`** The channel would need to confirm with the merchant, but given this happens when the offer is deleted on the merchant’s side, there is not really anything that can be done by the channel. While the merchant could recreate the product, it would show up in Violet as a new offer. Eventually, an archived offer would go into **`FOR_DELETION`** status to eventually be deleted.

</details>

<details>

<summary>As a Merchant, how should I interpret or act upon each status?</summary>

* **`UNAVAILABLE`** This indicates an inventory issue or a misconfigured product. (For example, a digital item likely wouldn’t have a quantity or be tracked by inventory, so checking its configuration can resolve an incorrect status.)
* **`AVAILABLE`** Unless this is a mistake, nothing needs to be done here. Otherwise, checking the item configuration or inventory stock should resolve it.
* **`DISABLED_UNAVAILABLE` / `DISABLED_AVAILABLE`** The merchant would need to resolve its own status in order to resolve the offer statuses.
* **`FOR_DELETION` / `ARCHIVED`** These are going to be due to the merchant deleting a product from their store so that its associated offer becomes archived. At this point, while the merchant could (re)create the product, a new offer would be created, instead, leaving the old one a stub which will eventually be deleted from Violet's system.

</details>

***

## Data Inclusion

Certain Offer data is not returned by default in order to keep responses lean and performant. You can request additional data by providing the `?include=` query parameter with a comma-separated list of values. This parameter is supported on the [Get Offer by ID](/api-reference/catalog/offers/get-offer-by-id.md) and [Get All Merchant Offers](/api-reference/catalog/offers/get-all-merchant-offers.md) endpoints.

**Example:** `GET /catalog/offers/{offer_id}?include=metadata,shipping`

The following values are supported:

| Value          | Description                                                                                                                                                                                                                                                            |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `metadata`     | Additional metadata associated with the Offer. Returns an array of key-value pairs sourced from the merchant's e-commerce platform.                                                                                                                                    |
| `collections`  | Collections the Offer belongs to. Returns an array of collection objects including `name`, `handle`, `description`, and `status`.                                                                                                                                      |
| `shipping`     | **\[BETA]** Shipping data for the Offer. Returns available shipping methods, pricing, regional availability, and any conditions that must be met. Currently limited to Shopify merchants only. See [Offer Shipping Data](#offer-shipping-data) below for more details. |
| `sku_metadata` | Additional metadata at the SKU level. Returns an array of key-value pairs for each SKU within the Offer.                                                                                                                                                               |

{% hint style="info" %}
You can combine multiple include values in a single request using commas: `?include=metadata,collections,shipping,sku_metadata`
{% endhint %}

### Metadata

When `?include=metadata` is provided, the `metadata` field on the Offer will be populated with an array of `MetaObject` entries. Each entry contains a `key`, `value`, and `type` (e.g., `STRING`, `JSON`, `INTEGER`, `BOOLEAN`). Metadata is sourced from the merchant's e-commerce platform and can contain product-level custom fields such as care instructions, material composition, or vendor-specific attributes.

### Collections

When `?include=collections` is provided, the `collections` field on the Offer will be populated with the collections the Offer belongs to. Each collection includes an `id`, `name`, `handle`, `description`, `status`, and `type` (either `CUSTOM` or `AUTOMATED`).

### SKU Metadata

When `?include=sku_metadata` is provided, the `metadata` field on each SKU within the Offer will be populated. This works the same as Offer-level metadata but at the individual SKU level, allowing you to access variant-specific custom fields.

***

## Digital vs Physical Offers

Many items for sale these days are digital in nature and can be delivered to a shopper without requiring shipping. Violet uses the `type` field to denote if an Offer is physical and requires shipping or is digital.

This field follows the rules of the merchant's e-commerce platform to determine if a product is digital or if it is physical. This can differ by platform, but in the event that a product has an unexpected value in the `type` field,\
the merchant will need to go edit that product in their e-commerce platform to make sure it is correctly configured as digital or physical.

***

## Offer Shipping Data

Shipping data can now be populated on Offers for qualified Shopify merchants. This shipping data shows which shipping methods are available for each individual Offer and, if applicable, what requirements must be met to unlock a shipping method. This data can be especially useful for showing shoppers when an Offer has free shipping available.

{% hint style="info" %}
Shipping data is currently limited to the Offers sourced from merchants on the `SHOPIFY` platform.
{% endhint %}

**Enabling Shipping Data for a Merchants Offers**\
To enable the syncing of shipping data for a merchant you can toggle on the `sync_product_shipping` global feature flag. This can be done using the [Toggle Global Feature Flag](/api-reference/merchants/configuration/toggle-merchant-configuration-global-feature-flag.md#available-feature-flags) endpoint.

**Including Shipping Data with Offers**\
By default the shipping data will not be included when retreiving an Offer. This is to ensure that consumers of the Offer endpoints can choose when to include or exclude this data and to account for how it may impact performance. To include the shipping data simply provide the `?include=shipping` query param in your request. You can learn more about the `include` query param in the API Reference for the [Get Offer by ID](/api-reference/catalog/offers/get-offer-by-id.md) and [Get All Merchant Offers](/api-reference/catalog/offers/get-all-merchant-offers.md) endpoints.

**Shipping Data Parity**\
Obtaining per-product shipping data from Shopify is very expensive in terms of API rate limits. For this reason we cannot sync shipping data on every Offer update. Instead we will sync shipping data soon after it is first toggled for a merchant and/or when a merchants catalog is first synced. From there the shipping data will be resynced on a scheduled basis that is determined by the size of a merchants catalog. The smaller a merchants catalog is the more frequently the shipping data can be updated. Infrequent updates will likely not cause issues as merchants typically make changes to their per-product shipping configurations infrequently.

{% hint style="info" %}
You may not immediately see shipping data when it is first toggled on for a merchant. Our system will evaluate the merchants catalog and schedule it for processing in an upcoming sync.
{% endhint %}

If you need to resync the shipping data of a single Offer this can be done using the [Sync Offer](/api-reference/ecom-syncs/offers/sync-offer-by-id.md) endpoint. This will perform an immediate resync of the Offer and its associated shipping data.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.violet.io/prism/catalog/offers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
