SalesChannelAttributeValueConfig
Retrieves a specific row for given id
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Responses
200
OK
application/json
403
Forbidden
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
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 records
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
Query parameters
pageinteger · min: 1OptionalDefault:
Specifies the page number of the current dataset
1
limitinteger · min: 1OptionalDefault:
Indicates the number of rows on the current page.
10
attribute_setinteger[]Optional
attributestringOptional
created_datestring · date-timeOptionalExample:
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
modified_datestring · date-timeOptionalExample:
Filter by modification date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
modified_date__lt=2024-01-01T00:00:00Z
Responses
200
OK
application/json
400
Required field(s) are missing, data is invalid, or the action is not allowed.
application/json
401
Unauthorized Access
application/json
500
Server Error
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?