SalesChannelAttributeValueConfig

Retrieve a marketplace attribute value config

get

Retrieves a specific row for given id

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/{channel_id}/attribute_value_configs/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pk": 1,
  "attribute_set": 1,
  "attribute_value": 1,
  "created_date": "2025-06-27T09:02:05.817Z",
  "modified_date": "2025-06-27T09:02:05.817Z"
}

Lists all of the marketplace attribute value config data

get

Lists all of the records

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
attribute_setinteger[]Optional
attributestringOptional
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
modified_datestring · date-timeOptional

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

Example: modified_date__lt=2024-01-01T00:00:00Z
Responses
200
OK
application/json
get
GET /api/v1/channel/{channel_id}/attribute_value_configs/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "pk": 1,
      "attribute_set": 1,
      "attribute_value": 1,
      "created_date": "2025-06-27T09:02:05.817Z",
      "modified_date": "2025-06-27T09:02:05.817Z"
    }
  ]
}

Was this helpful?