The product ID to update. Either this or variation_id must be provided.
This is often more convenient when you have the product ID rather than the variation ID.
A list of images to replace the existing images of the content. You have two options for providing images:
Using Uploadcare UUID: Upload images to Uploadcare first and provide the UUID
Using URL: Provide a publicly accessible image URL with an empty uuid string. The system will automatically download and upload the image to Uploadcare.
Needs to have this shape:
Copy
{ uuid: string; // UUID from Uploadcare, or empty string "" when using url filename?: string; mime_type?: string; url?: string; // Public image URL (used when uuid is empty) size?: number; height?: number; width?: number;}[]