# SalesChannelProductImage

## Retrieve a product image

> Retrieves a specific product image associated with a sales channel.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/{id}/":{"get":{"summary":"Retrieve a product image","description":"Retrieves a specific product image associated with a sales channel.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Product image","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## Retrieve a product image with details

> Get details of a specific product image associated with a sales channel.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/{id}/detailed/":{"get":{"summary":"Retrieve a product image with details","description":"Get details of a specific product image associated with a sales channel.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Product image with details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## List product images

> Retrieve a list of product images associated with a specific sales channel.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}},"product":{"name":"product","in":"query","required":false,"description":"Filter by Product ID.","schema":{"type":"integer","format":"int64"}},"product__pk__in":{"name":"product__pk__in","in":"query","description":"Filter by multiple primary keys (comma-separated).","schema":{"type":"array","items":{"type":"integer"}}},"id__in":{"name":"id__in","in":"query","required":false,"description":"Filters by multiple ids (comma-separated list of integers)","schema":{"type":"array","items":{"type":"integer"}}},"is_seller_product":{"name":"is_seller_product","in":"query","description":"Filter by seller product status (True or False).","schema":{"type":"boolean"}},"product_type":{"name":"product_type","in":"query","description":"Filter by product type.","schema":{"type":"array","items":{"type":"string"},"enum":["-2","-1","0","1","2","3","4","5"]}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}}},"paths":{"/api/v1/channel/{channel_id}/product_images/":{"get":{"summary":"List product images","description":"Retrieve a list of product images associated with a specific sales channel.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/product"},{"$ref":"#/components/parameters/product__pk__in"},{"$ref":"#/components/parameters/id__in"},{"$ref":"#/components/parameters/is_seller_product"},{"$ref":"#/components/parameters/product_type"}],"responses":{"200":{"description":"List of product images","content":{"application/json":{"schema":{"type":"object","properties":{"count":{"type":"integer","description":"Total number of items"},"next":{"type":"string","nullable":true,"description":"URL for next page"},"previous":{"type":"string","nullable":true,"description":"URL for previous page"},"results":{"type":"array","items":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}}}}}}}}}}
```

## List product images with details

> Retrieve a detailed list of product images associated with a specific sales channel.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/detailed/":{"get":{"summary":"List product images with details","description":"Retrieve a detailed list of product images associated with a specific sales channel.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"}],"responses":{"200":{"description":"List of product images","content":{"application/json":{"schema":{"type":"object","properties":{"count":{"type":"integer","description":"Total number of items"},"next":{"type":"string","nullable":true,"description":"URL for next page"},"previous":{"type":"string","nullable":true,"description":"URL for previous page"},"results":{"type":"array","items":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## List product images to insert

> Retrieve a list of product images that are pending insertion into the system.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/inserts/":{"get":{"summary":"List product images to insert","description":"Retrieve a list of product images that are pending insertion into the system.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"}],"responses":{"200":{"description":"List of product images to insert","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## List product images to update

> Retrieve a list of product images that are pending updates in the system.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/updates/":{"get":{"summary":"List product images to update","description":"Retrieve a list of product images that are pending updates in the system.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"}],"responses":{"200":{"description":"List of product images to update","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## List product images to insert or update

> Retrieve a list of product images that are pending either insertion or updates in the system.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"channel_path":{"name":"channel_id","in":"path","description":"The channel ID of the resource.","required":true,"schema":{"type":"integer"}},"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}}},"schemas":{"SalesChannelProductImage":{"$ref":"#/components/schemas/ProductImage"},"ProductImage":{"type":"object","description":"Represents an image associated with a product, used for display in sales channels or internal listings.","properties":{"pk":{"type":"integer","description":"Unique identifier for the product image.","readOnly":true},"product":{"type":"integer","description":"ID of the associated product."},"source":{"type":"string","nullable":true,"description":"The source of the image (e.g., 'unified').","enum":["unified","integration","seller_center"]},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the image was last modified."},"created_date":{"type":"string","format":"date-time","description":"The date and time when the image was created.","readOnly":true},"height":{"type":"integer","nullable":true,"description":"Height of the image in pixels."},"width":{"type":"integer","nullable":true,"description":"Width of the image in pixels."},"hash":{"type":"string","nullable":true,"description":"A hash of the image content used for deduplication or versioning."},"status":{"type":"string","description":"Status of the image (e.g., active). Read-only.","enum":["active","disabled"]},"is_active":{"type":"boolean","description":"Indicates whether the image is currently active and should be used."},"order":{"type":"integer","description":"Display order for the image among other images of the same product."},"object_id":{"type":"integer","description":"ID of the target object this configuration applies to."},"content_type":{"type":"string","description":"The model name of the target object's content type."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/channel/{channel_id}/product_images/inserts_or_updates/":{"get":{"summary":"List product images to insert or update","description":"Retrieve a list of product images that are pending either insertion or updates in the system.","tags":["SalesChannelProductImage"],"parameters":[{"$ref":"#/components/parameters/channel_path"},{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"}],"responses":{"200":{"description":"List of product images to insert or update","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SalesChannelProductImage"}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"500":{"$ref":"#/components/responses/500"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

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

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

```
GET https://apidocs.akinon.com/omnitron-openapis/saleschannelproductimage.md?ask=<question>
```

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

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