SalesChannelGetStockList
Retrieves a specific stock list data of given channel
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/{channel_id}/stock_lists/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "text",
"code": "text",
"is_auto_sync": false,
"created_date": "2025-06-27T08:46:54.791Z",
"modified_date": "2025-06-27T08:46:54.791Z"
}
Lists all of stock 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}/stock_lists/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"created_date": "2025-06-27T08:46:54.791Z",
"modified_date": "2025-06-27T08:46:54.791Z"
}
]
}
Lists all of stock 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}/stock_lists/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"created_date": "2025-06-27T08:46:54.791Z",
"modified_date": "2025-06-27T08:46:54.791Z"
}
]
}
Was this helpful?