GetProductImageList

Returns a list of all photos of a given product. The list can be shortened using the _offset and _limit parameters.

  • Input data type => object
  • Output data type => array

Input parameters

  1. _session_hash (string)
  2. Required. Session identifier (received during login - doLogin)

  3. product_id (integer)
  4. Required. Product identifier. The product with the given id must exist.

  5. _offset (integer)
  6. Required. Specifies the offset of the results.

  7. _limit (integer)
  8. Required. Specifies the number of results in the query.

  9. _modified_from (dateTime)
  10. Specifies the modification date from which the results will be displayed. Time in unixtime format.

  11. _modified_to (dateTime)
  12. Specifies the modification date to which the results will be displayed. Time in unixtime format.

Output data

  1. created_at (dateTime)
  2. Entry creation date.

  3. updated_at (dateTime)
  4. Date of last entry modification.

  5. id (integer)
  6. Identifier.

  7. product_id (integer)
  8. Product identifier.

  9. image (string)
  10. File encoded with base64 method

  11. image_filename (string)
  12. Name of the photo file.

  13. is_default (integer)
  14. Determines if the photo is the main/default photo for the product.