SalesChannelGetStockList

Retrieves a specific stock list data of given channel

get

Retrieves a specific stock list data of given channel

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
200
OK
application/json
get
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

get

Lists all of stock list data of given channel

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
namestringOptional

Filters by name

codestringOptional

Filter by code.

code__exactstringOptional

Filters by exact code

is_auto_syncbooleanOptional

Filter by auto-sync status.

Example: true
created_datestring · date-timeOptional

Filter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).

Example: created_date__gt=2024-01-01T00:00:00Z
Responses
200
OK
application/json
get
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

get

Lists all of stock list data of given channel

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
namestringOptional

Filters by name

codestringOptional

Filter by code.

code__exactstringOptional

Filters by exact code

is_auto_syncbooleanOptional

Filter by auto-sync status.

Example: true
created_datestring · date-timeOptional

Filter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).

Example: created_date__gt=2024-01-01T00:00:00Z
Responses
200
OK
application/json
get
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?