Skip to main content
Skip table of contents

Querying Blank Products Using GraphQL

In order to use the createVirtualProductsFromArtwork GraphQL mutation to create print on demand products, you will need to specify the IDs of the blank products that the virtual products will be based on. These can be exported to CSV via the KornitX platform UI but if you want to get this information programmatically, we can use the Products GraphQL query.

The query we will be looking at will return the IDs of all of the blank product IDs that your OAuth user has access to, as well as some other basic information about each blank product.

Authentication

The GraphQL API uses OAuth authentication.  A request for an OAuth token is made to the OAuth endpoint, which returns an access token.  This token can then be used in requests made to the GraphQL API endpoint.

To make a request for a token, you will require an OAuth user to be set up in the KornitX platform. The user will require specific access and permissions depending on the API request. The permissions required for this request can be found in the “OAuth User Requirements” section below.

If you don’t have an OAuth user set up, please contact the support team, who will be happy to help. The support team will set up the OAuth user in the KornitX platform for you and supply you with the OAuth user client ID and client secret.  These credentials can then be used to obtain a token from the OAuth token endpoint. 

OAuth Token Endpoint - https://oauth.kornitx.net/token

The OAuth token can be obtained by making a POST to the above endpoint.  The request type for the OAuth token is x-www-form-urlencoded and must include the following form keys and values.

Key

Value

client_id

The client ID of the OAuth user provided by the support team.

client_secret

The client secret of the OAuth user provided by the support team.

grant_type

client_credentials

scope

products.customisable.list

Example Response

JSON
{"token_type":"Bearer","expires_in":3600,"access_token":"..."}

OAuth User Requirements

To make the Products request to the GraphQL API, the OAuth user must have:

  • Read access to one or more categories that contain blank products.

  • The products.customisable.list user permission enabled.

The Products GraphQL Query

Now that we have the access token, we can make the Products request.

We will be making a POST request to the https://graphql.kornitx.net endpoint.

The request will have 2 headers listed below.

Content-Type: “application/json” 

Authorization: “Bearer [OAUTH_ACCESS_TOKEN]“

[OAUTH_ACCESS_TOKEN] should be replaced by the access token that was returned when we made the token request to the https://oauth.kornitx.net/token endpoint.

Query

A blank product in the platform is a product that has its Product Type field set to Blank. You will find this setting in the General Details of a product in the KornitX platform UI.

In this example, we will be requesting details on all of the blank products that the OAuth user has access to. The details we will be requesting are:

  • Product ID

  • Product Ref

  • Name

  • Fulfiller SKU

  • Large and Extra-Large Snapshots

  • The Products' Image Asset

and if the blank product has variant information:

  • Variant Name

  • Variant SKU

  • Variant ID

  • Variant Aspect Option 1 Thumbnail URL

However, the GraphQL API call can return numerous other pieces of information about the product, details of which, can be found in the schema here - https://developers-v2.custom-gateway.net/graphql/product.doc.html

Example Query

JSON
query ($page: Int!, $filter: Json!, $count: Int!, $variantPage: Int!, $variantCount: Int!) {
  core {
    products(filter: $filter, page: $page, count: $count) {
      pages {
        pageCount
        current
      }
      items {
        id
        ref
        name
        productCode
        variants (page: $variantPage, count: $variantCount) {
            items {
                name
                sku
                id
                aspect_option_1 {
                    main_thumbnail_url
                }
            }
        }
        bespoke_image {
            url
        }
        snapshots {
          large
          extra_large
        }
      }
    }
  }
}

 

Variables

The query contains references to 5 variables - $page, $filter, $count, $variantPage and $variantCount. Descriptions of these variables can be found in the table below.

Variable Descriptions

Variable

Type

Description

page

Int!

The page number of the list of products to be returned. i.e. if the are 100 products in total and count is set to 10, setting this value to 2 will return information on products 11 through 20 (page 2 of the 100 products).

filter

Json!

Allows you to filter the products to just the ones you require. For example, by Product Type ID.

count

Int!

How may products should be returned in the response.

variantPage

Int!

The page number of the list of variants to be returned. i.e. if the are 100 variants in total and count is set to 10, setting this value to 2 will return information on variants 11 through 20 (page 2 of the 100 variants).

variantCount

Int!

How may variants should be returned in the response.

Example Variables

JSON
{
    "filter": {
        "type": 4096
    },
    "page": 1,
    "count": 100,
    "variantPage": 1,
    "variantCount": 100
}

 

Response

A successful request will return a HTTP 200 response and the details of the blank products that the OAuth user has access to. For the example we have been working with, the response data can be viewed below.

Example response

JSON
{
    "data": {
        "core": {
            "products": {
                "pages": {
                    "pageCount": 0,
                    "current": 1
                },
                "items": [
                    {
                        "id": 5196275,
                        "ref": "62FC5D89246BEBE",
                        "name": "Drummer",
                        "productCode": "STSU812-PSTEST",
                        "variants": {
                            "items": [
                                {
                                    "name": "XXS White",
                                    "sku": "STSU812C0012S",
                                    "id": 1002557,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "XS White",
                                    "sku": "STSU812C001XS",
                                    "id": 1002558,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "S White",
                                    "sku": "STSU812C0011S",
                                    "id": 1002559,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "M White",
                                    "sku": "STSU812C0011M",
                                    "id": 1002560,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "L White",
                                    "sku": "STSU812C0011L",
                                    "id": 1002561,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "XL White",
                                    "sku": "STSU812C0011X",
                                    "id": 1002562,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "XXL White",
                                    "sku": "STSU812C0012X",
                                    "id": 1002563,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "3XL White",
                                    "sku": "STSU812C0013X",
                                    "id": 1002564,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/aa60/d5e6/8ad2/7a15/aaf2/37dc/0c65/fea6/173d/8a08/bb12/39f9/dee8/8dc3/05b9/86f2.png"
                                    }
                                },
                                {
                                    "name": "XXS Burgundy",
                                    "sku": "STSU812C2442S",
                                    "id": 1002565,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "XS Burgundy",
                                    "sku": "STSU812C244XS",
                                    "id": 1002566,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "S Burgundy",
                                    "sku": "STSU812C2441S",
                                    "id": 1002567,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "M Burgundy",
                                    "sku": "STSU812C2441M",
                                    "id": 1002568,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "L Burgundy",
                                    "sku": "STSU812C2441L",
                                    "id": 1002569,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "XL Burgundy",
                                    "sku": "STSU812C2441X",
                                    "id": 1002570,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "XXL Burgundy",
                                    "sku": "STSU812C2442X",
                                    "id": 1002571,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "3XL Burgundy",
                                    "sku": "STSU812C2443X",
                                    "id": 1002572,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4b2e/82de/0ec8/e2dc/8333/54bd/a0b5/1576/2866/e4ae/3cd3/1951/3828/4041/ac0f/5651.png"
                                    }
                                },
                                {
                                    "name": "XS Red",
                                    "sku": "STSU812C004XS",
                                    "id": 1002573,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "S Red",
                                    "sku": "STSU812C0041S",
                                    "id": 1002574,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "M Red",
                                    "sku": "STSU812C0041M",
                                    "id": 1002575,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "L Red",
                                    "sku": "STSU812C0041L",
                                    "id": 1002576,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "XL Red",
                                    "sku": "STSU812C0041X",
                                    "id": 1002577,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "XXL Red",
                                    "sku": "STSU812C0042X",
                                    "id": 1002578,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "3XL Red",
                                    "sku": "STSU812C0043X",
                                    "id": 1002579,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "4XL Red",
                                    "sku": "STSU812C0044X",
                                    "id": 1002580,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/c60a/0460/6d0e/4964/6fac/fc69/088a/f0a6/2cb8/0074/6e15/0599/9cf0/6ced/d54b/cc83.png"
                                    }
                                },
                                {
                                    "name": "XS Raspberry",
                                    "sku": "STSU812C240XS",
                                    "id": 1002581,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "S Raspberry",
                                    "sku": "STSU812C2401S",
                                    "id": 1002582,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "M Raspberry",
                                    "sku": "STSU812C2401M",
                                    "id": 1002583,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "L Raspberry",
                                    "sku": "STSU812C2401L",
                                    "id": 1002584,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "XL Raspberry",
                                    "sku": "STSU812C2401X",
                                    "id": 1002585,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "XXL Raspberry",
                                    "sku": "STSU812C2402X",
                                    "id": 1002586,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "3XL Raspberry",
                                    "sku": "STSU812C2403X",
                                    "id": 1002587,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4f74/eabc/aa4c/c98f/69a7/de26/85c3/ced2/41e3/d586/d485/97d7/d0b4/e9da/c12e/7c45.png"
                                    }
                                },
                                {
                                    "name": "XS Royal Blue",
                                    "sku": "STSU812C230XS",
                                    "id": 1002588,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "S Royal Blue",
                                    "sku": "STSU812C2301S",
                                    "id": 1002589,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "M Royal Blue",
                                    "sku": "STSU812C2301M",
                                    "id": 1002590,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "L Royal Blue",
                                    "sku": "STSU812C2301L",
                                    "id": 1002591,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "XL Royal Blue",
                                    "sku": "STSU812C2301X",
                                    "id": 1002592,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "XXL Royal Blue",
                                    "sku": "STSU812C2302X",
                                    "id": 1002593,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "3XL Royal Blue",
                                    "sku": "STSU812C2303X",
                                    "id": 1002594,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ad51/71eb/b915/6925/ea5b/6081/cdca/8edb/d9e4/a1c7/2be1/d5b9/c741/f055/28bc/2916.png"
                                    }
                                },
                                {
                                    "name": "XXS French Navy",
                                    "sku": "STSU812C7272S",
                                    "id": 1002595,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "XS French Navy",
                                    "sku": "STSU812C727XS",
                                    "id": 1002596,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "S French Navy",
                                    "sku": "STSU812C7271S",
                                    "id": 1002597,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "M French Navy",
                                    "sku": "STSU812C7271M",
                                    "id": 1002598,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "L French Navy",
                                    "sku": "STSU812C7271L",
                                    "id": 1002599,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "XL French Navy",
                                    "sku": "STSU812C7271X",
                                    "id": 1002600,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "XXL French Navy",
                                    "sku": "STSU812C7272X",
                                    "id": 1002601,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "3XL French Navy",
                                    "sku": "STSU812C7273X",
                                    "id": 1002602,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "4XL French Navy",
                                    "sku": "STSU812C7274X",
                                    "id": 1002603,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "5XL French Navy",
                                    "sku": "STSU812C7275X",
                                    "id": 1002604,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/28e9/e14c/23e1/5bfc/4cd9/26db/5bea/59ab/e63e/49b2/7826/cd93/3b06/af6c/8077/74b8.png"
                                    }
                                },
                                {
                                    "name": "XS Khaki",
                                    "sku": "STSU812C223XS",
                                    "id": 1002605,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "S Khaki",
                                    "sku": "STSU812C2231S",
                                    "id": 1002606,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "M Khaki",
                                    "sku": "STSU812C2231M",
                                    "id": 1002607,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "L Khaki",
                                    "sku": "STSU812C2231L",
                                    "id": 1002608,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "XL Khaki",
                                    "sku": "STSU812C2231X",
                                    "id": 1002609,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "XXL Khaki",
                                    "sku": "STSU812C2232X",
                                    "id": 1002610,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "3XL Khaki",
                                    "sku": "STSU812C2233X",
                                    "id": 1002611,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/ed62/5ed4/fe35/ada9/0c04/05e2/0a23/4e73/8b6a/b0f4/89f5/dbe2/e87e/d112/c303/3dfd.png"
                                    }
                                },
                                {
                                    "name": "XS Bottle Green",
                                    "sku": "STSU812C224XS",
                                    "id": 1002612,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "S Bottle Green",
                                    "sku": "STSU812C2241S",
                                    "id": 1002613,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "M Bottle Green",
                                    "sku": "STSU812C2241M",
                                    "id": 1002614,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "L Bottle Green",
                                    "sku": "STSU812C2241L",
                                    "id": 1002615,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "XL Bottle Green",
                                    "sku": "STSU812C2241X",
                                    "id": 1002616,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "XXL Bottle Green",
                                    "sku": "STSU812C2242X",
                                    "id": 1002617,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "3XL Bottle Green",
                                    "sku": "STSU812C2243X",
                                    "id": 1002618,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/09ee/f7d2/8fa2/df9b/3e29/7102/477c/e40c/ddd4/22ee/3da9/f1aa/65b0/62b0/b9d3/a5ce.png"
                                    }
                                },
                                {
                                    "name": "XS Anthracite",
                                    "sku": "STSU812C253XS",
                                    "id": 1002619,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "S Anthracite",
                                    "sku": "STSU812C2531S",
                                    "id": 1002620,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "M Anthracite",
                                    "sku": "STSU812C2531M",
                                    "id": 1002621,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "L Anthracite",
                                    "sku": "STSU812C2531L",
                                    "id": 1002622,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "XL Anthracite",
                                    "sku": "STSU812C2531X",
                                    "id": 1002623,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "XXL Anthracite",
                                    "sku": "STSU812C2532X",
                                    "id": 1002624,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "3XL Anthracite",
                                    "sku": "STSU812C2533X",
                                    "id": 1002625,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "4XL Anthracite",
                                    "sku": "STSU812C2534X",
                                    "id": 1002626,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/e449/f124/0d3c/d9a4/e8c0/016a/aaff/36a1/dd5f/e48d/d6d2/2707/054d/4586/0a68/8f88.png"
                                    }
                                },
                                {
                                    "name": "XXS Black",
                                    "sku": "STSU812C0022S",
                                    "id": 1002627,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "XS Black",
                                    "sku": "STSU812C002XS",
                                    "id": 1002628,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "S Black",
                                    "sku": "STSU812C0021S",
                                    "id": 1002629,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "M Black",
                                    "sku": "STSU812C0021M",
                                    "id": 1002630,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "L Black",
                                    "sku": "STSU812C0021L",
                                    "id": 1002631,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "XL Black",
                                    "sku": "STSU812C0021X",
                                    "id": 1002632,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "XXL Black",
                                    "sku": "STSU812C0022X",
                                    "id": 1002633,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "3XL Black",
                                    "sku": "STSU812C0023X",
                                    "id": 1002634,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "4XL Black",
                                    "sku": "STSU812C0024X",
                                    "id": 1002635,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "5XL Black",
                                    "sku": "STSU812C0025X",
                                    "id": 1002636,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/4536/90e6/421f/1a82/236d/9ba4/5052/443d/25ca/0c55/95a6/500b/6a68/5eda/0431/2544.png"
                                    }
                                },
                                {
                                    "name": "XXS Heather Grey",
                                    "sku": "STSU812C2502S",
                                    "id": 1002637,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "XS Heather Grey",
                                    "sku": "STSU812C250XS",
                                    "id": 1002638,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "S Heather Grey",
                                    "sku": "STSU812C2501S",
                                    "id": 1002639,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "M Heather Grey",
                                    "sku": "STSU812C2501M",
                                    "id": 1002640,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "L Heather Grey",
                                    "sku": "STSU812C2501L",
                                    "id": 1002641,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "XL Heather Grey",
                                    "sku": "STSU812C2501X",
                                    "id": 1002642,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "XXL Heather Grey",
                                    "sku": "STSU812C2502X",
                                    "id": 1002643,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "3XL Heather Grey",
                                    "sku": "STSU812C2503X",
                                    "id": 1002644,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "4XL Heather Grey",
                                    "sku": "STSU812C2504X",
                                    "id": 1002645,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                },
                                {
                                    "name": "5XL Heather Grey",
                                    "sku": "STSU812C2505X",
                                    "id": 1002646,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/5a98/a1c0/ecc5/d875/d081/c017/8a10/a71b/6f51/5f99/65c9/7f4f/a98d/24c2/a3d7/2196.png"
                                    }
                                }
                            ]
                        },
                        "bespoke_image": {
                            "url": null
                        },
                        "snapshots": {
                            "large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/62FC5D89246BEBE/snapshot/large.jpg",
                            "extra_large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/62FC5D89246BEBE/snapshot/extra-large.jpg"
                        }
                    },
                    {
                        "id": 7595694,
                        "ref": "DAB9FBC22BC193E",
                        "name": "iPhone 12 Tough Case (Black TPU) in Gloss",
                        "productCode": "IP12-TCB-CS-G-TEST",
                        "variants": {
                            "items": []
                        },
                        "bespoke_image": {
                            "url": null
                        },
                        "snapshots": {
                            "large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/DAB9FBC22BC193E/snapshot/large.jpg",
                            "extra_large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/DAB9FBC22BC193E/snapshot/extra-large.jpg"
                        }
                    },
                    {
                        "id": 9531637,
                        "ref": "EE78CDCAD21A3E7",
                        "name": "Gildan Valueweight T-Shirt",
                        "productCode": "Gd01-Testing",
                        "variants": {
                            "items": [
                                {
                                    "name": "Black S",
                                    "sku": "GD01BLKS",
                                    "id": 2501437,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black M",
                                    "sku": "GD01BLKM",
                                    "id": 2501438,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black L",
                                    "sku": "GD01BLKL",
                                    "id": 2501439,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black XL",
                                    "sku": "GD01BLKXL",
                                    "id": 2501440,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black XXL",
                                    "sku": "GD01BLKXXL",
                                    "id": 2501441,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black 3XL",
                                    "sku": "GD01BLK3XL",
                                    "id": 2501442,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Black 4XL",
                                    "sku": "GD01BLK4XL",
                                    "id": 2501443,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f346/cbcd/7380/8fc8/a240/79f0/45e8/1ed7/8481/f073/3051/efd1/c95c/4451/af07/5c12.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy S",
                                    "sku": "GD01DAIS",
                                    "id": 2501444,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy M",
                                    "sku": "GD01DAIM",
                                    "id": 2501445,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy L",
                                    "sku": "GD01DAIL",
                                    "id": 2501446,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy XL",
                                    "sku": "GD01DAIXL",
                                    "id": 2501447,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy XXL",
                                    "sku": "GD01DAIXXL",
                                    "id": 2501448,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy 3XL",
                                    "sku": "GD01DAI3XL",
                                    "id": 2501449,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Daisy 4XL",
                                    "sku": "GD01DAI4XL",
                                    "id": 2501450,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/2caf/6333/6ff4/2c8d/f916/3182/1264/a5c6/cc55/f53e/1a15/5b3b/ec59/3229/7185/649f.jpg"
                                    }
                                },
                                {
                                    "name": "Forest Green S",
                                    "sku": "GD01FORS",
                                    "id": 2501451,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/a335/67d6/11be/4da0/ce3e/c7c8/bac0/3bba/5148/75d4/877b/033e/e655/7391/514b/9d19.jpg"
                                    }
                                },
                                {
                                    "name": "Forest Green M",
                                    "sku": "GD01FORM",
                                    "id": 2501452,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/a335/67d6/11be/4da0/ce3e/c7c8/bac0/3bba/5148/75d4/877b/033e/e655/7391/514b/9d19.jpg"
                                    }
                                },
                                {
                                    "name": "Forest Green L",
                                    "sku": "GD01FORL",
                                    "id": 2501453,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/a335/67d6/11be/4da0/ce3e/c7c8/bac0/3bba/5148/75d4/877b/033e/e655/7391/514b/9d19.jpg"
                                    }
                                },
                                {
                                    "name": "Forest Green XL",
                                    "sku": "GD01FORXL",
                                    "id": 2501454,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/a335/67d6/11be/4da0/ce3e/c7c8/bac0/3bba/5148/75d4/877b/033e/e655/7391/514b/9d19.jpg"
                                    }
                                },
                                {
                                    "name": "Forest Green XXL",
                                    "sku": "GD01FORXXL",
                                    "id": 2501455,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/a335/67d6/11be/4da0/ce3e/c7c8/bac0/3bba/5148/75d4/877b/033e/e655/7391/514b/9d19.jpg"
                                    }
                                },
                                {
                                    "name": "Light Blue S",
                                    "sku": "GD01LBLS",
                                    "id": 2501456,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/017b/e877/5e63/5ae2/c5dc/430d/12d1/07b1/0184/d611/c5bc/195e/53cf/431b/4c24/9eb1.jpg"
                                    }
                                },
                                {
                                    "name": "Light Blue M",
                                    "sku": "GD01LBLM",
                                    "id": 2501457,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/017b/e877/5e63/5ae2/c5dc/430d/12d1/07b1/0184/d611/c5bc/195e/53cf/431b/4c24/9eb1.jpg"
                                    }
                                },
                                {
                                    "name": "Light Blue L",
                                    "sku": "GD01LBLL",
                                    "id": 2501458,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/017b/e877/5e63/5ae2/c5dc/430d/12d1/07b1/0184/d611/c5bc/195e/53cf/431b/4c24/9eb1.jpg"
                                    }
                                },
                                {
                                    "name": "Light Blue XL",
                                    "sku": "GD01LBLXL",
                                    "id": 2501459,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/017b/e877/5e63/5ae2/c5dc/430d/12d1/07b1/0184/d611/c5bc/195e/53cf/431b/4c24/9eb1.jpg"
                                    }
                                },
                                {
                                    "name": "Light Blue XXL",
                                    "sku": "GD01LBLXXL",
                                    "id": 2501460,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/017b/e877/5e63/5ae2/c5dc/430d/12d1/07b1/0184/d611/c5bc/195e/53cf/431b/4c24/9eb1.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon S",
                                    "sku": "GD01MARS",
                                    "id": 2501461,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon M",
                                    "sku": "GD01MARM",
                                    "id": 2501462,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon L",
                                    "sku": "GD01MARL",
                                    "id": 2501463,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon XL",
                                    "sku": "GD01MARXL",
                                    "id": 2501464,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon XXL",
                                    "sku": "GD01MARXXL",
                                    "id": 2501465,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon 3XL",
                                    "sku": "GD01MAR3XL",
                                    "id": 2501466,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Maroon 4XL",
                                    "sku": "GD01MAR4XL",
                                    "id": 2501467,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/f615/7afb/8c06/f4f9/3cff/7c04/6c18/21a9/8751/c7a0/b6b7/e3e8/2dac/ac76/dce3/03a3.jpg"
                                    }
                                },
                                {
                                    "name": "Navy S",
                                    "sku": "GD01NAVS",
                                    "id": 2501468,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy M",
                                    "sku": "GD01NAVM",
                                    "id": 2501469,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy L",
                                    "sku": "GD01NAVL",
                                    "id": 2501470,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy XL",
                                    "sku": "GD01NAVXL",
                                    "id": 2501471,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy XXL",
                                    "sku": "GD01NAVXXL",
                                    "id": 2501472,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy 3XL",
                                    "sku": "GD01NAV3XL",
                                    "id": 2501473,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Navy 4XL",
                                    "sku": "GD01NAV4XL",
                                    "id": 2501474,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bbc8/5597/13c1/89ce/dbfe/267f/4dbf/78be/4c1e/939b/af67/f0ff/764d/59fc/f3c1/01ee.jpg"
                                    }
                                },
                                {
                                    "name": "Red S",
                                    "sku": "GD01REDS",
                                    "id": 2501475,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red M",
                                    "sku": "GD01REDM",
                                    "id": 2501476,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red L",
                                    "sku": "GD01REDL",
                                    "id": 2501477,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red XL",
                                    "sku": "GD01REDXL",
                                    "id": 2501478,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red XXL",
                                    "sku": "GD01REDXXL",
                                    "id": 2501479,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red 3XL",
                                    "sku": "GD01RED3XL",
                                    "id": 2501480,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Red 4XL",
                                    "sku": "GD01RED4XL",
                                    "id": 2501481,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/1326/5096/5fce/5125/44ce/b755/8087/fc67/a7be/ba18/e7e9/bc4d/ab0e/d58d/9630/ba9f.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue S",
                                    "sku": "GD01ROYS",
                                    "id": 2501482,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue M",
                                    "sku": "GD01ROYM",
                                    "id": 2501483,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue L",
                                    "sku": "GD01ROYL",
                                    "id": 2501484,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue XL",
                                    "sku": "GD01ROYXL",
                                    "id": 2501485,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue XXL",
                                    "sku": "GD01ROYXXL",
                                    "id": 2501486,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue 3XL",
                                    "sku": "GD01ROY3XL",
                                    "id": 2501487,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Royal Blue 4XL",
                                    "sku": "GD01ROY4XL",
                                    "id": 2501488,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/726e/d76f/2e26/4b21/bf4a/7334/0ab5/3707/f78c/04a2/9615/7f2a/a044/496b/b3bf/9b7a.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey S",
                                    "sku": "GD01SGYS",
                                    "id": 2501489,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey M",
                                    "sku": "GD01SGYM",
                                    "id": 2501490,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey L",
                                    "sku": "GD01SGYL",
                                    "id": 2501491,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey XL",
                                    "sku": "GD01SGYXL",
                                    "id": 2501492,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey XXL",
                                    "sku": "GD01SGYXXL",
                                    "id": 2501493,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey 3XL",
                                    "sku": "GD01SGY3XL",
                                    "id": 2501494,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "Sport Grey 4XL",
                                    "sku": "GD01SGY4XL",
                                    "id": 2501495,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/bd99/72e9/bdf7/44f1/bfea/5f05/d295/d2cf/a0ea/b3cf/fbad/41cb/3652/1190/62b9/4157.jpg"
                                    }
                                },
                                {
                                    "name": "White S",
                                    "sku": "GD01WHIS",
                                    "id": 2501496,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White M",
                                    "sku": "GD01WHIM",
                                    "id": 2501497,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White L",
                                    "sku": "GD01WHIL",
                                    "id": 2501498,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White XL",
                                    "sku": "GD01WHIXL",
                                    "id": 2501499,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White XXL",
                                    "sku": "GD01WHIXXL",
                                    "id": 2501500,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White 3XL",
                                    "sku": "GD01WHI3XL",
                                    "id": 2501501,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "White 4XL",
                                    "sku": "GD01WHI4XL",
                                    "id": 2501502,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/6eb3/8d3f/9565/5937/1264/9832/73f2/1a01/44b5/fa06/1bed/7196/b902/bfc3/1b6f/63ce.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green S",
                                    "sku": "GD01IGNS",
                                    "id": 2501503,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green M",
                                    "sku": "GD01IGNM",
                                    "id": 2501504,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green L",
                                    "sku": "GD01IGNL",
                                    "id": 2501505,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green XL",
                                    "sku": "GD01IGNXL",
                                    "id": 2501506,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green XXL",
                                    "sku": "GD01IGNXXL",
                                    "id": 2501507,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green 3XL",
                                    "sku": "GD01IGN3XL",
                                    "id": 2501508,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                },
                                {
                                    "name": "Irish Green 4XL",
                                    "sku": "GD01IGN4XL",
                                    "id": 2501509,
                                    "aspect_option_1": {
                                        "main_thumbnail_url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-assets/52f5/409b/2a2e/b890/13b1/d7be/8e04/ede3/0972/7a64/0eef/d3a6/4687/c6af/5618/db81.jpg"
                                    }
                                }
                            ]
                        },
                        "bespoke_image": {
                            "url": "https://s3-eu-west-1.amazonaws.com/assets.easypromo3d.com/resource/product-images/7168r1zckb4ry0jt9224bvcbz92p79.jpg"
                        },
                        "snapshots": {
                            "large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/EE78CDCAD21A3E7/snapshot/large.jpg",
                            "extra_large": "https://s3-eu-west-1.amazonaws.com/generated-assets-gateway3d-com/product/EE78CDCAD21A3E7/snapshot/extra-large.jpg"
                        }
                    }
                ]
            }
        }
    }
}

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.