SalesChannelMarketPlaceAttributeValue
Retrieves a marketplace attribute value
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/channel/{channel_id}/attribute_values/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"attribute": 1,
"label": "text",
"value": "text",
"created_date": "2025-06-27T08:14:14.311Z",
"modified_date": "2025-06-27T08:14:14.311Z"
}
Deletes a marketplace attribute value via given id
The channel ID of the resource.
5
Unique identifier of the resource
1
DELETE /api/channel/{channel_id}/attribute_values/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Retrieves all data of MarketPlaceAttributeValue
The channel ID of the resource.
5
GET /api/v1/channel/{channel_id}/attribute_values/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"attribute": 1,
"label": "text",
"value": "text",
"created_date": "2025-06-27T08:14:14.311Z",
"modified_date": "2025-06-27T08:14:14.311Z"
}
]
}
Creates a new marketplace attribute value for a spesific channel (Channels are related with the attribute value's attribute data)
The channel ID of the resource.
5
Unique identifier of the attribute
Associated MarketPlaceAttribute id
Label value of the MarketPlaceAttributeValue data
Value of the MarketPlaceAttributeValue data
Creation date of the data
Last modification date
POST /api/channel/{channel_id}/attribute_values/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"attribute": 1,
"label": "text",
"value": "text"
}
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:14:14.311Z"
}
Updates a marketplace attribute value via current data
The channel ID of the resource.
5
Unique identifier of the resource
1
Unique identifier of the attribute
Associated MarketPlaceAttribute id
Label value of the MarketPlaceAttributeValue data
Value of the MarketPlaceAttributeValue data
Creation date of the data
Last modification date
PATCH /api/v1/channel/{channel_id}/attribute_values/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45
{
"attribute": 1,
"label": "text",
"value": "text"
}
{
"pk": 1,
"attribute": 1,
"label": "text",
"value": "text",
"created_date": "2025-06-27T08:14:14.311Z",
"modified_date": "2025-06-27T08:14:14.311Z"
}
Was this helpful?