Images

Get All Product Images

GET /catalog/products/{product_id}/images

Request

Returns a list of Product Images. Optional parameters can be passed in.

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • product_id in path - integer
    required

    The ID of the Product to which the resource belongs.

  • page in query - integer

    Specifies the page number in a limited (paginated) list of products.

  • limit in query with default of 50 - integer

    Controls the number of items per page in a limited (paginated) list of products.

  • include_fields in query - array
    Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
    Type: array[string]

    Allowed: name | type | sku | description | weight | width | depth | height | price | cost_price | retail_price | sale_price | map_price | tax_class_id | product_tax_code | calculated_price | categories | brand_id | option_set_id | option_set_display | inventory_level | inventory_warning_level | inventory_tracking | reviews_rating_sum | reviews_count | total_sold | fixed_cost_shipping_price | is_free_shipping | is_visible | is_featured | related_products | warranty | bin_picking_number | layout_file | upc | mpn | gtin | date_last_imported | search_keywords | availability | availability_description | condition | is_condition_shown | order_quantity_minimum | order_quantity_maximum | page_title | meta_keywords | meta_description | date_created | date_modified | view_count | preorder_release_date | preorder_message | is_preorder_only | is_price_hidden | price_hidden_label | custom_url | base_variant_id | open_graph_type | open_graph_title | open_graph_description | open_graph_use_meta_description | open_graph_use_product_name | open_graph_use_image

  • exclude_fields in query - array
    Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.
    Type: array[string]

example

Response

Body

object | application/json

Response payload for the BigCommerce API.

  • data
    array[object]

  • meta
    object

    Data about the response, including pagination and collection totals.

example

Create a Product Image

POST /catalog/products/{product_id}/images

Request

Creates a Product Image.

Required Fields

  • image_file, or
  • image_url

Usage Notes

  • image_url
    • 255 character limit
  • Content-Type
    • For image_file, use the multipart/form-data media type. For image_url, use the application/json type. See Adding product images for more information.
  • You can create only one image at a time. A product can have up to 1000 images.
  • Supported image file types are BMP, GIF, JPEG, PNG, WBMP, XBM, and WEBP.
  • Each image file or image uploaded by URL can be up to 8 MB.

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • product_id in path - integer
    required

    The ID of the Product to which the resource belongs.

Body

object | application/json
The model for a POST to create an image on a product.
  • product_id
    integer

    The unique numeric identifier for the product with which the image is associated.

  • image_url
    string

    The URL for an image displayed on the storefront when the conditions are applied. Limit of 8MB per file.

    Cannot be used with image_file.

    <= 255 characters
  • is_thumbnail
    boolean

    Flag for identifying whether the image is used as the productʼs thumbnail.

  • sort_order
    integer

    The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

    Min: -2147483648
    Max: 2147483647
  • description
    string

    The description for the image.

  • date_modified
    string

    The date on which the product image was modified.

Body

object | multipart/form-data
The model for a POST to create an image on a product.
  • product_id
    integer

    The unique numeric identifier for the product with which the image is associated.

  • date_modified
    string

    The date on which the product image was modified.

  • is_thumbnail
    boolean

    Flag for identifying whether the image is used as the productʼs thumbnail.

  • sort_order
    integer

    The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

    Min: -2147483648
    Max: 2147483647
  • description
    string

    The description for the image.

  • image_file
    string

    The local path to the original image file uploaded to BigCommerce. Use image_url when creating a product.

    Must be sent as a multipart/form-data field in the request body. Limit of 8 MB per file. Cannot be used with image_url.

example

Response

Success

Body

object | application/json

Response payload for the BigCommerce API.

  • data

    One of:
    • id
      integer

      The unique numeric ID of the image; increments sequentially.

    • product_id
      integer

      The unique numeric identifier for the product with which the image is associated.

    • url_zoom
      string
      read-only

      The zoom URL for this image. By default, this is used as the zoom image on product pages when zoom images are enabled. You should provide an image smaller than 1280x1280; otherwise, the API returns a resized image.

    • url_standard
      string
      read-only

      The standard URL for this image. By default, this is used for product-page images.

    • url_thumbnail
      string
      read-only

      The thumbnail URL for this image. By default, this is the image size used on the category page and in side panels.

    • url_tiny
      string
      read-only

      The tiny URL for this image. By default, this is the image size used for thumbnails beneath the product image on a product page.

    • date_modified
      string

      The date on which the product image was modified.

    • is_thumbnail
      boolean

      Flag for identifying whether the image is used as the productʼs thumbnail.

    • sort_order
      integer

      The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

      Min: -2147483648
      Max: 2147483647
    • description
      string

      The description for the image.

    • image_url
      string

      Must be a fully qualified URL path, including protocol. Limit of 8MB per file.

  • meta
    object

    Response metadata.

example

Get a Product Image

GET /catalog/products/{product_id}/images/{image_id}

Request

Returns a single Product Image. Optional parameters can be passed in.

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • product_id in path - integer
    required

    The ID of the Product to which the resource belongs.

  • image_id in path - integer
    required

    The ID of the Image that is being operated on.

  • include_fields in query - array
    Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
    Type: array[string]

    Allowed: name | type | sku | description | weight | width | depth | height | price | cost_price | retail_price | sale_price | map_price | tax_class_id | product_tax_code | calculated_price | categories | brand_id | option_set_id | option_set_display | inventory_level | inventory_warning_level | inventory_tracking | reviews_rating_sum | reviews_count | total_sold | fixed_cost_shipping_price | is_free_shipping | is_visible | is_featured | related_products | warranty | bin_picking_number | layout_file | upc | mpn | gtin | date_last_imported | search_keywords | availability | availability_description | condition | is_condition_shown | order_quantity_minimum | order_quantity_maximum | page_title | meta_keywords | meta_description | date_created | date_modified | view_count | preorder_release_date | preorder_message | is_preorder_only | is_price_hidden | price_hidden_label | custom_url | base_variant_id | open_graph_type | open_graph_title | open_graph_description | open_graph_use_meta_description | open_graph_use_product_name | open_graph_use_image

  • exclude_fields in query - array
    Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.
    Type: array[string]

example

Response

Body

object | application/json

Response payload for the BigCommerce API.

  • data
    object

    Common ProductImage properties.
  • meta
    object

    Response metadata.

example

Update a Product Image

PUT /catalog/products/{product_id}/images/{image_id}

Request

Updates a Product Image.

Usage Notes

  • image_url
    • 255 character limit
  • Each image file or image uploaded by URL can be up to 8 MB.
  • For file uploads, send a POST request using the multipart/form-data media type

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • product_id in path - integer
    required

    The ID of the Product to which the resource belongs.

  • image_id in path - integer
    required

    The ID of the Image that is being operated on.

  • Content-Type in header with default of application/json - string
    required
    The MIME type of the request body.

Body

object | application/json
The model for a POST or PUT to create or update an image on a product.
  • product_id
    integer

    The unique numeric identifier for the product with which the image is associated.

  • image_url
    string

    The URL for an image displayed on the storefront when the conditions are applied. Limit of 8MB per file.

    Cannot be used with image_file.

    <= 255 characters
  • is_thumbnail
    boolean

    Flag for identifying whether the image is used as the productʼs thumbnail.

  • sort_order
    integer

    The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

    Min: -2147483648
    Max: 2147483647
  • description
    string

    The description for the image.

  • date_modified
    string

    The date on which the product image was modified.

Body

object | multipart/form-data
The model for a POST or PUT to create or update an image on a product.
  • product_id
    integer

    The unique numeric identifier for the product with which the image is associated.

  • date_modified
    string

    The date on which the product image was modified.

  • is_thumbnail
    boolean

    Flag for identifying whether the image is used as the productʼs thumbnail.

  • sort_order
    integer

    The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

    Min: -2147483648
    Max: 2147483647
  • description
    string

    The description for the image.

  • image_file
    string

    The local path to the original image file uploaded to BigCommerce. Use image_url when creating a product.

    Must be sent as a multipart/form-data field in the request body. Limit of 8 MB per file. Cannot be used with image_url.

example

Response

Success

Body

object | application/json

Response payload for the BigCommerce API.

  • data

    One of:
    • id
      integer

      The unique numeric ID of the image; increments sequentially.

    • product_id
      integer

      The unique numeric identifier for the product with which the image is associated.

    • url_zoom
      string
      read-only

      The zoom URL for this image. By default, this is used as the zoom image on product pages when zoom images are enabled. You should provide an image smaller than 1280x1280; otherwise, the API returns a resized image.

    • url_standard
      string
      read-only

      The standard URL for this image. By default, this is used for product-page images.

    • url_thumbnail
      string
      read-only

      The thumbnail URL for this image. By default, this is the image size used on the category page and in side panels.

    • url_tiny
      string
      read-only

      The tiny URL for this image. By default, this is the image size used for thumbnails beneath the product image on a product page.

    • date_modified
      string

      The date on which the product image was modified.

    • is_thumbnail
      boolean

      Flag for identifying whether the image is used as the productʼs thumbnail.

    • sort_order
      integer

      The order in which the image will be displayed on the product page. Higher integers give the image a lower priority. When updating, if the image is given a lower priority, all images with a sort_order the same as or greater than the imageʼs new sort_order value will have their sort_orders reordered.

      Min: -2147483648
      Max: 2147483647
    • description
      string

      The description for the image.

    • image_url
      string

      Must be a fully qualified URL path, including protocol. Limit of 8MB per file.

  • meta
    object

    Response metadata.

example

Delete a Product Image

DELETE /catalog/products/{product_id}/images/{image_id}

Request

Deletes a Product Image.

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • product_id in path - integer
    required

    The ID of the Product to which the resource belongs.

  • image_id in path - integer
    required

    The ID of the Image that is being operated on.

example

Response

Did you find what you were looking for?