# ProductPrices

## Retrieve a product price

> Retrieve the fields of a specific product price by ID.

```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":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]}},"responses":{"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/product_price/{id}":{"get":{"summary":"Retrieve a product price","description":"Retrieve the fields of a specific product price by ID.","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Product price retrieved successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Retrieve a product price with details

> Retrieve the details of a specific product price by ID with additional details.

```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":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ProductPriceDetailed":{"allOf":[{"$ref":"#/components/schemas/ProductPrice"}],"properties":{"product":{"$ref":"#/components/schemas/Product"},"price_list":{"$ref":"#/components/schemas/PriceList"}}},"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]},"Product":{"type":"object","properties":{"id":{"type":"integer","format":"int64","readOnly":true,"description":"Unique identifier for the product"},"name":{"type":"string","description":"Name of the product","maxLength":255},"base_code":{"type":"string","description":"Base code for product variants","nullable":true},"sku":{"type":"string","description":"Stock keeping unit - unique identifier for the product","maxLength":255},"uuid":{"type":"string","format":"uuid","description":"Unique identifier for the product price."},"description":{"type":"string","description":"Detailed description of the product","maxLength":512,"nullable":true},"brand":{"type":"integer","description":"Foreign key to Brand model","nullable":true},"erp_categories":{"type":"array","items":{"type":"integer"},"description":"List of ERP category IDs"},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate percentage","maximum":999.99,"minimum":0,"nullable":true},"weight":{"type":"number","format":"decimal","description":"Product weight","maximum":99999999.99,"minimum":0,"nullable":true},"product_type":{"type":"string","enum":["pre_product","simple","product_meta","bundle","grouped","pre_miscellaneous","miscellaneous","offer"],"description":"Type of the product"},"productization_date":{"type":"string","format":"date-time","nullable":true,"description":"Date when product was productized from pre status"},"data_source":{"type":"integer","description":"Foreign key to DataSource model","nullable":true},"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"Timestamp when the product was created"},"modified_date":{"type":"string","format":"date-time","readOnly":true,"description":"Timestamp when the product was last updated"},"is_active":{"type":"boolean","description":"Whether the product is currently active","default":true},"attribute_set":{"type":"integer","description":"Foreign key to AttributeSet model","nullable":true},"parent":{"type":"integer","description":"Foreign key to parent Product","nullable":true},"group_products":{"type":"array","items":{"type":"integer"},"description":"List of product IDs in the group","nullable":true},"attributes":{"type":"object","description":"Dynamic attributes stored as JSON","additionalProperties":true,"nullable":true},"listing_code":{"type":"string","description":"Listing code for the product","nullable":true},"is_seller_product":{"type":"boolean","description":"Whether the product is a seller product","default":false},"custom_attribute_set":{"type":"integer","description":"Foreign key to AttributeSet model","nullable":true}},"required":["name","sku","barcode","product_type"]},"PriceList":{"type":"object","properties":{"pk":{"type":"integer","format":"int64","description":"Price List ID"},"name":{"type":"string","maxLength":64,"description":"Name of the price list."},"code":{"type":"string","nullable":true,"maxLength":64,"description":"Unique code for the price list. Can be null or blank."},"currency":{"$ref":"#/components/schemas/CurrencyEnum"},"is_auto_sync":{"type":"boolean","description":"Indicates whether the price list is auto-synchronized with an external integration.","default":false},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Price List"},"modified_date":{"type":"string","format":"date-time","description":"Last Modification Date of the Price List"}}}},"responses":{"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."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/product_price/{id}/detailed/":{"get":{"summary":"Retrieve a product price with details","description":"Retrieve the details of a specific product price by ID with additional details.","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Product price with details retrieved successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPriceDetailed"}}}},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Update a product price

> Update the fields of a specific product price by ID.

```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":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]}},"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."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}},"406":{"description":"A custom 406 error occurs due to different validation failures in viewset or service level, such as uniqueness checks or other service-related exceptions.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Detailed message of the 406 error."}}}}}}}},"paths":{"/api/v1/product_price/{id}/":{"put":{"summary":"Update a product price","description":"Update the fields of a specific product price by ID.","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/id_path"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"responses":{"200":{"description":"Product price updated successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"},"406":{"$ref":"#/components/responses/406"}}}}}}
```

## Delete a product price

> Delete a specific product price by ID.

```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":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"responses":{"204":{"description":"No content"},"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."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/product_price/{id}/":{"delete":{"summary":"Delete a product price","description":"Delete a specific product price by ID.","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"204":{"$ref":"#/components/responses/204"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Partial update a product price

> Update specific fields of a specific product price by ID.

```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":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]}},"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."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}},"406":{"description":"A custom 406 error occurs due to different validation failures in viewset or service level, such as uniqueness checks or other service-related exceptions.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Detailed message of the 406 error."}}}}}}}},"paths":{"/api/v1/product_price/{id}/":{"patch":{"summary":"Partial update a product price","description":"Update specific fields of a specific product price by ID.","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/id_path"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"responses":{"200":{"description":"Product price updated successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"},"406":{"$ref":"#/components/responses/406"}}}}}}
```

## Bulk Upsert Product Prices

> Create or update multiple product prices in bulk

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"schemas":{"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]}},"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."}}}}}}}},"paths":{"/api/v1/product_price/bulk_upsert/":{"post":{"summary":"Bulk Upsert Product Prices","description":"Create or update multiple product prices in bulk","tags":["ProductPrices"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ProductPrice"}}}}},"responses":{"200":{"description":"Successfully processed bulk upsert","content":{"application/json":{"schema":{"type":"object","description":"Empty response on success"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"}}}}}}
```

## List Product Prices

> Retrieve a list of product prices with optional filters

```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":{"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"}},"is_active":{"name":"is_active","in":"query","description":"Filter by active status (True or False)","required":false,"schema":{"type":"boolean"}},"modified_date":{"name":"modified_date","in":"query","required":false,"description":"Filter by modification date using supported lookup expressions (e.g., `gt`, `gte`, `lt`, `lte`, `date__gt`, etc.).","schema":{"type":"string","format":"date-time"}},"created_date":{"name":"created_date","in":"query","required":false,"description":"Filter by creation date using supported lookup expressions (e.g., `gt`, `gte`, `lt`, `lte`, `date__gt`, etc.).","schema":{"type":"string","format":"date-time"}},"pk__in":{"name":"pk__in","in":"query","description":"Filter by multiple primary key values (comma-separated list of integers)","required":false,"schema":{"type":"array","items":{"type":"integer"}},"style":"form","explode":false},"price_list":{"name":"price_list","in":"query","required":false,"description":"Filter by Price List ID.","schema":{"type":"integer","format":"int64"}},"currency_type":{"name":"currency_type","in":"query","required":false,"description":"Filter by Currency Type.","schema":{"$ref":"#/components/schemas/CurrencyEnum"}},"price":{"name":"price","in":"query","required":false,"description":"Filter by the product price.","schema":{"type":"number","format":"decimal"}},"tax_rate":{"name":"tax_rate","in":"query","required":false,"description":"Filter by Tax Rate.","schema":{"type":"number","format":"decimal"}},"retail_price":{"name":"retail_price","in":"query","required":false,"description":"Filter by Retail Price.","schema":{"type":"number","format":"decimal"}},"product__attributes__some_key":{"name":"product__attributes__some_key","in":"query","description":"Filter by a specific key in the 'attributes' JSON object of the product.","required":false,"schema":{"type":"string"}},"product__localized_attributes__some_key":{"name":"product__localized_attributes__some_key","in":"query","description":"Filter by a specific key in the 'localized_attributes' JSON object of the product.","required":false,"schema":{"type":"string"}},"extra_field__some_key":{"name":"extra_field__some_key","in":"query","description":"Filter by a specific key in the 'extra_field' JSON object.","required":false,"schema":{"type":"string"}}},"schemas":{"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]},"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}}},"responses":{"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."}}}}}}}},"paths":{"/api/v1/product_price/":{"get":{"summary":"List Product Prices","description":"Retrieve a list of product prices with optional filters","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/product"},{"$ref":"#/components/parameters/is_active"},{"$ref":"#/components/parameters/modified_date"},{"$ref":"#/components/parameters/created_date"},{"$ref":"#/components/parameters/pk__in"},{"$ref":"#/components/parameters/price_list"},{"$ref":"#/components/parameters/currency_type"},{"$ref":"#/components/parameters/price"},{"$ref":"#/components/parameters/tax_rate"},{"$ref":"#/components/parameters/retail_price"},{"$ref":"#/components/parameters/product__attributes__some_key"},{"$ref":"#/components/parameters/product__localized_attributes__some_key"},{"$ref":"#/components/parameters/extra_field__some_key"}],"responses":{"200":{"description":"List of Product Prices","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/ProductPrice"}}}}}}},"401":{"$ref":"#/components/responses/401"}}}}}}
```

## Create a product price

> Create a new product price with the specified data.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"schemas":{"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]}},"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."}}}}}},"403":{"description":"Forbidden"},"406":{"description":"A custom 406 error occurs due to different validation failures in viewset or service level, such as uniqueness checks or other service-related exceptions.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Detailed message of the 406 error."}}}}}}}},"paths":{"/api/v1/product_price/":{"post":{"summary":"Create a product price","description":"Create a new product price with the specified data.","tags":["ProductPrices"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"responses":{"201":{"description":"Product price created successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProductPrice"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"403":{"$ref":"#/components/responses/403"},"406":{"$ref":"#/components/responses/406"}}}}}}
```

## List Product Prices with Details

> Retrieve a detailed list of product prices with optional filters

```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":{"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"}},"is_active":{"name":"is_active","in":"query","description":"Filter by active status (True or False)","required":false,"schema":{"type":"boolean"}},"modified_date":{"name":"modified_date","in":"query","required":false,"description":"Filter by modification date using supported lookup expressions (e.g., `gt`, `gte`, `lt`, `lte`, `date__gt`, etc.).","schema":{"type":"string","format":"date-time"}},"created_date":{"name":"created_date","in":"query","required":false,"description":"Filter by creation date using supported lookup expressions (e.g., `gt`, `gte`, `lt`, `lte`, `date__gt`, etc.).","schema":{"type":"string","format":"date-time"}},"pk__in":{"name":"pk__in","in":"query","description":"Filter by multiple primary key values (comma-separated list of integers)","required":false,"schema":{"type":"array","items":{"type":"integer"}},"style":"form","explode":false},"price_list":{"name":"price_list","in":"query","required":false,"description":"Filter by Price List ID.","schema":{"type":"integer","format":"int64"}},"currency_type":{"name":"currency_type","in":"query","required":false,"description":"Filter by Currency Type.","schema":{"$ref":"#/components/schemas/CurrencyEnum"}},"price":{"name":"price","in":"query","required":false,"description":"Filter by the product price.","schema":{"type":"number","format":"decimal"}},"tax_rate":{"name":"tax_rate","in":"query","required":false,"description":"Filter by Tax Rate.","schema":{"type":"number","format":"decimal"}},"retail_price":{"name":"retail_price","in":"query","required":false,"description":"Filter by Retail Price.","schema":{"type":"number","format":"decimal"}},"product__attributes__some_key":{"name":"product__attributes__some_key","in":"query","description":"Filter by a specific key in the 'attributes' JSON object of the product.","required":false,"schema":{"type":"string"}},"product__localized_attributes__some_key":{"name":"product__localized_attributes__some_key","in":"query","description":"Filter by a specific key in the 'localized_attributes' JSON object of the product.","required":false,"schema":{"type":"string"}},"extra_field__some_key":{"name":"extra_field__some_key","in":"query","description":"Filter by a specific key in the 'extra_field' JSON object.","required":false,"schema":{"type":"string"}},"product__sku__exact":{"name":"product__sku__exact","in":"query","description":"Filter by exact SKU.","schema":{"type":"string"}},"product__sku__in":{"name":"product__sku__in","in":"query","description":"Filter by multiple SKUs (comma-separated).","schema":{"type":"array","items":{"type":"string"}}},"product__sku_exclude__exact":{"name":"product__sku_exclude__exact","in":"query","description":"Exclude exact SKU.","schema":{"type":"string"}},"product__sku_exclude__in":{"name":"product__sku_exclude__in","in":"query","description":"Exclude multiple SKUs (comma-separated).","schema":{"type":"array","items":{"type":"string"}}},"product__base_code_exclude__in":{"name":"product__base_code_exclude__in","in":"query","description":"Exclude multiple base codes (comma-separated).","schema":{"type":"array","items":{"type":"string"}}},"product__base_code__exact":{"name":"product__base_code__exact","in":"query","description":"Filter by exact base code.","schema":{"type":"string"}},"product__base_code__iexact":{"name":"product__base_code__iexact","in":"query","description":"Filter by base code (case-insensitive).","schema":{"type":"string"}},"product__base_code_exclude__exact":{"name":"product__base_code_exclude__exact","in":"query","description":"Exclude exact base code.","schema":{"type":"string"}},"product__base_code_exclude__iexact":{"name":"product__base_code_exclude__iexact","in":"query","description":"Exclude base code (case-insensitive).","schema":{"type":"string"}},"product__pk__in":{"name":"product__pk__in","in":"query","description":"Filter by multiple primary keys (comma-separated).","schema":{"type":"array","items":{"type":"integer"}}},"product__attributes":{"name":"product__attributes","in":"query","description":"Filter by attributes in JSON format.","schema":{"type":"string"}},"product__attributes_exclude":{"name":"product__attributes_exclude","in":"query","description":"Exclude attributes in JSON format.","schema":{"type":"string"}},"product__attributes_kwargs":{"name":"product__attributes_kwargs","in":"query","description":"Filter by attributes using additional keyword arguments.","schema":{"type":"string"}},"product__localized_attributes":{"name":"product__localized_attributes","in":"query","description":"Filter by localized attributes in JSON format.","schema":{"type":"string"}},"product__localized_attributes_kwargs":{"name":"product__localized_attributes_kwargs","in":"query","description":"Filter by localized attributes with additional keywords.","schema":{"type":"string"}},"product__extra_attributes":{"name":"product__extra_attributes","in":"query","description":"Filter by extra attributes.","schema":{"type":"string"}},"product__product_type":{"name":"product__product_type","in":"query","description":"Filter by product type.","schema":{"type":"array","items":{"type":"string"},"enum":["-2","-1","0","1","2","3","4","5"]}},"product__product_type_exclude":{"name":"product__product_type_exclude","in":"query","description":"Exclude product types.","schema":{"type":"array","items":{"type":"string"},"enum":["-2","-1","0","1","2","3","4","5"]}},"product__attribute_set":{"name":"product__attribute_set","in":"query","description":"Filter by attribute sets.","schema":{"type":"array","items":{"type":"integer"}}},"product__attribute_set_exclude":{"name":"product__attribute_set_exclude","in":"query","description":"Exclude specific attribute sets.","schema":{"type":"array","items":{"type":"integer"}}},"product__parent":{"name":"product__parent","in":"query","description":"Filter by parent product ID.","schema":{"type":"integer"}},"product__offer_parent":{"name":"product__offer_parent","in":"query","description":"Filter by parent products with a 'simple' product type.","schema":{"type":"integer"}},"product__group_parent_set":{"name":"product__group_parent_set","in":"query","description":"Filter by parent products with a 'grouped' product type.","schema":{"type":"array","items":{"type":"integer"}}},"product__group_products":{"name":"product__group_products","in":"query","description":"Filter by grouped products.","schema":{"type":"array","items":{"type":"integer"}}},"product__parent__isnull":{"name":"product__parent__isnull","in":"query","description":"Filter by whether parent is null (True or False).","schema":{"type":"boolean"}},"product__catalogitem":{"name":"product__catalogitem","in":"query","description":"Filter by catalog items.","schema":{"type":"array","items":{"type":"integer"}}},"product__listable_products_only":{"name":"product__listable_products_only","in":"query","description":"Filter by listable products only (True or False).","schema":{"type":"boolean"}},"product__productimage__isnull":{"name":"product__productimage__isnull","in":"query","description":"Filter by whether the product has associated images.","schema":{"type":"boolean"}},"product__productvideo__isnull":{"name":"product__productvideo__isnull","in":"query","description":"Filter by whether the product has associated videos.","schema":{"type":"boolean"}},"product__downloadableimage__isnull":{"name":"product__downloadableimage__isnull","in":"query","description":"Filter by whether the product has downloadable images.","schema":{"type":"boolean"}},"product__stock_list_not_contains":{"name":"product__stock_list_not_contains","in":"query","description":"Exclude products in specific stock lists.","schema":{"type":"string"}},"product__price_list_not_contains":{"name":"product__price_list_not_contains","in":"query","description":"Exclude products in specific price lists.","schema":{"type":"string"}},"product__productization_date":{"name":"product__productization_date","in":"query","description":"Filter by productization date with lookup expressions (e.g., `gte`, `lte`).","schema":{"type":"string"}},"product__attribute_set__isnull":{"name":"product__attribute_set__isnull","in":"query","description":"Filter by whether attribute set is null.","schema":{"type":"boolean"}},"product__exclude_bundle_chapter_products":{"name":"product__exclude_bundle_chapter_products","in":"query","description":"Exclude products associated with specific bundle chapters.","schema":{"type":"integer"}},"product__discounted":{"name":"product__discounted","in":"query","description":"Filter by discounted products.","schema":{"type":"boolean"}},"product__data_source":{"name":"product__data_source","in":"query","description":"Filter by data source IDs.","schema":{"type":"array","items":{"type":"integer"}}},"product__data_source_exclude":{"name":"product__data_source_exclude","in":"query","description":"Exclude specific data sources.","schema":{"type":"array","items":{"type":"integer"}}},"product__data_source__isnull":{"name":"product__data_source__isnull","in":"query","description":"Filter by whether data source is null.","schema":{"type":"boolean"}},"product__exclude_passive_distributed_products":{"name":"product__exclude_passive_distributed_products","in":"query","description":"Exclude passive distributed products.","schema":{"type":"boolean"}},"product__custom_attribute_set":{"name":"product__custom_attribute_set","in":"query","description":"Filter by custom attribute set IDs.","schema":{"type":"array","items":{"type":"integer"}}},"product__brand":{"name":"product__brand","in":"query","description":"Filter by brand ID.","schema":{"type":"integer"}},"product__erp_categories":{"name":"product__erp_categories","in":"query","description":"Filter by ERP category ID.","schema":{"type":"integer"}},"integration__channel":{"name":"channel","in":"query","description":"Filter by channel ID.","schema":{"type":"integer"}},"integration__channel_id":{"name":"channel_id","in":"query","description":"Filter by exact channel ID.","schema":{"type":"integer"}},"integration__channel_name":{"name":"channel_name","in":"query","description":"Filter by channel name (case-insensitive).","schema":{"type":"string"}},"integration__content_type_name":{"name":"content_type_name","in":"query","description":"Filter by content type model name.","schema":{"type":"string"}},"integration__status":{"name":"status","in":"query","description":"Filter by multiple status values.","schema":{"type":"array","items":{"type":"string","enum":["processing","success","error"]}}},"integration__version_date":{"name":"version_date","in":"query","description":"Filter by version date using various lookup expressions.","schema":{"type":"string","format":"date-time"}},"integration__remote_id__in":{"name":"remote_id__in","in":"query","description":"Filter by multiple remote IDs.","schema":{"type":"array","items":{"type":"string"}}},"integration__remote_id__exact":{"name":"remote_id__exact","in":"query","description":"Filter by exact remote ID.","schema":{"type":"string"}},"integration__object_id__in":{"name":"object_id__in","in":"query","description":"Filter by multiple object IDs.","schema":{"type":"array","items":{"type":"integer"}}},"integration__state":{"name":"state","in":"query","description":"Filter by state using JSON-based filtering.","schema":{"type":"string","format":"json"}},"integration__local_batch_id__exact":{"name":"local_batch_id__exact","in":"query","description":"Filter by exact local batch ID.","schema":{"type":"string"}}},"schemas":{"CurrencyEnum":{"type":"string","description":"Currency type for the price list.","enum":["tr","eu","usd","egp","gbp","mad","pln","sar","ron","uah","czk","huf","rub","bgn","iqd","kwd","bhd","omr","qar","aed","ngn","inr","lei","kzt","jod","rsd"]},"ProductPriceDetailed":{"allOf":[{"$ref":"#/components/schemas/ProductPrice"}],"properties":{"product":{"$ref":"#/components/schemas/Product"},"price_list":{"$ref":"#/components/schemas/PriceList"}}},"ProductPrice":{"type":"object","properties":{"id":{"type":"integer","format":"int64","description":"Product Price ID"},"product":{"type":"integer","nullable":false,"description":"ID of the product related with the price."},"price_list":{"type":"integer","nullable":false,"description":"ID of the price list related with the price."},"retail_price":{"type":"number","format":"decimal","nullable":true,"description":"Retail price of the product, can be null or blank."},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate applied to the product price."},"currency_type":{"$ref":"#/components/schemas/CurrencyEnum"},"price":{"type":"number","format":"decimal","description":"The actual price of the product."},"price_type":{"type":"string","description":"Type of the price.","enum":["default","range_"]},"discount_percentage":{"type":"number","format":"decimal","description":"Discount percentage applied to the price, if any."},"extra_field":{"type":"object","nullable":true,"additionalProperties":{"type":"string"},"description":"Extra fields related to the product price in JSON format."},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Product Price"},"modified_date":{"type":"string","format":"date-time","description":"Modification Date of the Product Price"}}},"Product":{"type":"object","properties":{"id":{"type":"integer","format":"int64","readOnly":true,"description":"Unique identifier for the product"},"name":{"type":"string","description":"Name of the product","maxLength":255},"base_code":{"type":"string","description":"Base code for product variants","nullable":true},"sku":{"type":"string","description":"Stock keeping unit - unique identifier for the product","maxLength":255},"uuid":{"type":"string","format":"uuid","description":"Unique identifier for the product price."},"description":{"type":"string","description":"Detailed description of the product","maxLength":512,"nullable":true},"brand":{"type":"integer","description":"Foreign key to Brand model","nullable":true},"erp_categories":{"type":"array","items":{"type":"integer"},"description":"List of ERP category IDs"},"tax_rate":{"type":"number","format":"decimal","description":"Tax rate percentage","maximum":999.99,"minimum":0,"nullable":true},"weight":{"type":"number","format":"decimal","description":"Product weight","maximum":99999999.99,"minimum":0,"nullable":true},"product_type":{"type":"string","enum":["pre_product","simple","product_meta","bundle","grouped","pre_miscellaneous","miscellaneous","offer"],"description":"Type of the product"},"productization_date":{"type":"string","format":"date-time","nullable":true,"description":"Date when product was productized from pre status"},"data_source":{"type":"integer","description":"Foreign key to DataSource model","nullable":true},"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"Timestamp when the product was created"},"modified_date":{"type":"string","format":"date-time","readOnly":true,"description":"Timestamp when the product was last updated"},"is_active":{"type":"boolean","description":"Whether the product is currently active","default":true},"attribute_set":{"type":"integer","description":"Foreign key to AttributeSet model","nullable":true},"parent":{"type":"integer","description":"Foreign key to parent Product","nullable":true},"group_products":{"type":"array","items":{"type":"integer"},"description":"List of product IDs in the group","nullable":true},"attributes":{"type":"object","description":"Dynamic attributes stored as JSON","additionalProperties":true,"nullable":true},"listing_code":{"type":"string","description":"Listing code for the product","nullable":true},"is_seller_product":{"type":"boolean","description":"Whether the product is a seller product","default":false},"custom_attribute_set":{"type":"integer","description":"Foreign key to AttributeSet model","nullable":true}},"required":["name","sku","barcode","product_type"]},"PriceList":{"type":"object","properties":{"pk":{"type":"integer","format":"int64","description":"Price List ID"},"name":{"type":"string","maxLength":64,"description":"Name of the price list."},"code":{"type":"string","nullable":true,"maxLength":64,"description":"Unique code for the price list. Can be null or blank."},"currency":{"$ref":"#/components/schemas/CurrencyEnum"},"is_auto_sync":{"type":"boolean","description":"Indicates whether the price list is auto-synchronized with an external integration.","default":false},"created_date":{"type":"string","format":"date-time","description":"Creation Date of the Price List"},"modified_date":{"type":"string","format":"date-time","description":"Last Modification Date of the Price List"}}}},"responses":{"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."}}}}}}}},"paths":{"/api/v1/product_price/detailed/":{"get":{"summary":"List Product Prices with Details","description":"Retrieve a detailed list of product prices with optional filters","tags":["ProductPrices"],"parameters":[{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/product"},{"$ref":"#/components/parameters/is_active"},{"$ref":"#/components/parameters/modified_date"},{"$ref":"#/components/parameters/created_date"},{"$ref":"#/components/parameters/pk__in"},{"$ref":"#/components/parameters/price_list"},{"$ref":"#/components/parameters/currency_type"},{"$ref":"#/components/parameters/price"},{"$ref":"#/components/parameters/tax_rate"},{"$ref":"#/components/parameters/retail_price"},{"$ref":"#/components/parameters/product__attributes__some_key"},{"$ref":"#/components/parameters/product__localized_attributes__some_key"},{"$ref":"#/components/parameters/extra_field__some_key"},{"$ref":"#/components/parameters/product__sku__exact"},{"$ref":"#/components/parameters/product__sku__in"},{"$ref":"#/components/parameters/product__sku_exclude__exact"},{"$ref":"#/components/parameters/product__sku_exclude__in"},{"$ref":"#/components/parameters/product__base_code_exclude__in"},{"$ref":"#/components/parameters/product__base_code__exact"},{"$ref":"#/components/parameters/product__base_code__iexact"},{"$ref":"#/components/parameters/product__base_code_exclude__exact"},{"$ref":"#/components/parameters/product__base_code_exclude__iexact"},{"$ref":"#/components/parameters/product__pk__in"},{"$ref":"#/components/parameters/product__attributes"},{"$ref":"#/components/parameters/product__attributes_exclude"},{"$ref":"#/components/parameters/product__attributes_kwargs"},{"$ref":"#/components/parameters/product__localized_attributes"},{"$ref":"#/components/parameters/product__localized_attributes_kwargs"},{"$ref":"#/components/parameters/product__extra_attributes"},{"$ref":"#/components/parameters/product__product_type"},{"$ref":"#/components/parameters/product__product_type_exclude"},{"$ref":"#/components/parameters/product__attribute_set"},{"$ref":"#/components/parameters/product__attribute_set_exclude"},{"$ref":"#/components/parameters/product__parent"},{"$ref":"#/components/parameters/product__offer_parent"},{"$ref":"#/components/parameters/product__group_parent_set"},{"$ref":"#/components/parameters/product__group_products"},{"$ref":"#/components/parameters/product__parent__isnull"},{"$ref":"#/components/parameters/product__catalogitem"},{"$ref":"#/components/parameters/product__listable_products_only"},{"$ref":"#/components/parameters/product__productimage__isnull"},{"$ref":"#/components/parameters/product__productvideo__isnull"},{"$ref":"#/components/parameters/product__downloadableimage__isnull"},{"$ref":"#/components/parameters/product__stock_list_not_contains"},{"$ref":"#/components/parameters/product__price_list_not_contains"},{"$ref":"#/components/parameters/product__productization_date"},{"$ref":"#/components/parameters/product__attribute_set__isnull"},{"$ref":"#/components/parameters/product__exclude_bundle_chapter_products"},{"$ref":"#/components/parameters/product__discounted"},{"$ref":"#/components/parameters/product__data_source"},{"$ref":"#/components/parameters/product__data_source_exclude"},{"$ref":"#/components/parameters/product__data_source__isnull"},{"$ref":"#/components/parameters/product__exclude_passive_distributed_products"},{"$ref":"#/components/parameters/product__custom_attribute_set"},{"$ref":"#/components/parameters/product__brand"},{"$ref":"#/components/parameters/product__erp_categories"},{"$ref":"#/components/parameters/integration__channel"},{"$ref":"#/components/parameters/integration__channel_id"},{"$ref":"#/components/parameters/integration__channel_name"},{"$ref":"#/components/parameters/integration__content_type_name"},{"$ref":"#/components/parameters/integration__status"},{"$ref":"#/components/parameters/integration__version_date"},{"$ref":"#/components/parameters/integration__remote_id__in"},{"$ref":"#/components/parameters/integration__remote_id__exact"},{"$ref":"#/components/parameters/integration__object_id__in"},{"$ref":"#/components/parameters/integration__state"},{"$ref":"#/components/parameters/integration__local_batch_id__exact"}],"responses":{"200":{"description":"List of Product Prices with Details","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/ProductPriceDetailed"}}}}}}},"401":{"$ref":"#/components/responses/401"}}}}}}
```


---

# 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/productprices.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.
