SalesChannelGetPriceList
Retrieves specific price list data with given id of given channel
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/{channel_id}/price_lists/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T09:38:45.158Z",
"modified_date": "2025-06-27T09:38:45.158Z"
}
Lists all of price list data of given channel
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters by name
Filter by code.
Filters by exact code
Filter by auto-sync status.
true
Filter by creation date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
created_date__gt=2024-01-01T00:00:00Z
GET /api/v1/{channel_id}/price_lists/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T09:38:45.158Z",
"modified_date": "2025-06-27T09:38:45.158Z"
}
]
}
Lists all of price list data of given channel
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filters by name
Filter by code.
Filters by exact code
Filter by auto-sync status.
true
Filter by creation date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
created_date__gt=2024-01-01T00:00:00Z
GET /api/v1/{channel_id}/price_lists/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"name": "Standard Price List",
"code": "shop_price_list",
"currency": "try",
"is_auto_sync": true,
"created_date": "2025-06-27T09:38:45.158Z",
"modified_date": "2025-06-27T09:38:45.158Z"
}
]
}
Was this helpful?