SalesChannelExtraProductPrices
Retrieves a specific extra product price by its ID.
The channel ID of the resource.
5Unique identifier of the resource
1Activate id to hyperlink the response data.
Extra Product Price retrieved successfully.
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}Retrieves a specific extra product price by its ID with detailed information.
The channel ID of the resource.
5Unique identifier of the resource
1Activate id to hyperlink the response data.
Extra Product Price with details retrieved successfully.
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"product": 1,
"price_list": 1,
"id": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}Retrieve a list of extra product prices with optional filters
The channel ID of the resource.
5Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Activate id to hyperlink the response data.
Filter by active status (True or False)
Filter by modification date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).
modified_date__lt=2024-01-01T00:00:00ZFilter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).
created_date__gt=2024-01-01T00:00:00ZCurrency type for the price list.
tryPossible values: Filter by Tax Rate.
18Filter by the product price.
120Filter by Retail Price.
100Filter by Price List ID.
2Filter by a specific key in the 'extra_field' JSON object.
extra_field__some_key=some_valueFilter by multiple primary key values (comma-separated list of integers)
Filter by Product ID.
123Filter by a specific key in the 'attributes' JSON object of the product.
product__attributes__color=redFilter by a specific key in the 'localized_attributes' JSON object of the product.
product__localized_attributes__color=redFilter by exact SKU.
SKU123Filter by multiple SKUs (comma-separated).
Exclude exact SKU.
SKU789Exclude multiple SKUs (comma-separated).
Exclude multiple base codes (comma-separated).
Filter by exact base code.
Filter by base code (case-insensitive).
Exclude exact base code.
Exclude base code (case-insensitive).
Filter by multiple primary keys (comma-separated).
Filter by attributes in JSON format.
attributes__color=redExclude attributes in JSON format.
attributes_exclude__size=smallFilter by attributes using additional keyword arguments.
attributes_kwargs__color=blueFilter by localized attributes in JSON format.
localized_attributes__locale=en-USFilter by localized attributes with additional keywords.
localized_attributes_kwargs__locale=en-GBFilter by extra attributes.
extra_attributes__color=redFilter by product type.
Exclude product types.
Filter by attribute sets.
Exclude specific attribute sets.
Filter by parent product ID.
Filter by parent products with a 'simple' product type.
Filter by parent products with a 'grouped' product type.
Filter by grouped products.
Filter by whether parent is null (True or False).
Filter by catalog items.
Filter by listable products only (True or False).
Filter by whether the product has associated images.
Filter by whether the product has associated videos.
Filter by whether the product has downloadable images.
Exclude products in specific stock lists.
Exclude products in specific price lists.
Filter by productization date with lookup expressions (e.g., gte, lte).
productization_date__gte=2024-01-01Filter by whether attribute set is null.
Exclude products associated with specific bundle chapters.
Filter by discounted products.
Filter by data source IDs.
Exclude specific data sources.
Filter by whether data source is null.
Exclude passive distributed products.
Filter by custom attribute set IDs.
Filter by brand ID.
Filter by ERP category ID.
Filter by channel ID.
Filter by exact channel ID.
Filter by channel name (case-insensitive).
Filter by content type model name.
Filter by version date using various lookup expressions.
integration__version_date__gt=2024-01-01T00:00:00ZFilter by multiple remote IDs.
Filter by exact remote ID.
Filter by multiple object IDs.
Filter by state using JSON-based filtering.
integration__state__status="ready"Filter by exact local batch ID.
List of Product Prices
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}
]
}Retrieve a detailed list of extra product prices with optional filters
The channel ID of the resource.
5Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Activate id to hyperlink the response data.
List of extra product price with details
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}
]
}Retrieve a list of extra product prices for inserts
The channel ID of the resource.
5List of Extra Product Prices for Inserts
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/inserts/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}
]
}Retrieve a list of extra product prices for updates
The channel ID of the resource.
5List of Extra Product Prices for Updates
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}
]
}Retrieve a list of extra product prices for inserts or updates
The channel ID of the resource.
5List of Extra Product Prices for Inserts or Updates
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/v1/channel/{channel_id}/extra_product_prices/inserts_or_updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"product": 1,
"price_list": 1,
"retail_price": 100,
"tax_rate": 18,
"currency_type": "try",
"price": 120,
"price_type": "default",
"discount_percentage": 10,
"modifier_collection": 1,
"adjusted_price": 108,
"extra_field": {
"custom_field": "example_value"
},
"created_date": "2025-12-01T14:19:08.967Z",
"modified_date": "2025-12-01T14:19:08.967Z"
}
]
}Was this helpful?

