SalesChannelMarketPlaceAttributeValue
Retrieves a marketplace attribute value
The channel ID of the resource.
5
Unique identifier of the resource
1
Marketplace attribute value details
Forbidden
The given resource or object was not found or does not exist.
Server Error
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-08-29T19:57:19.335Z",
"modified_date": "2025-08-29T19:57:19.335Z"
}
Deletes a marketplace attribute value via given id
The channel ID of the resource.
5
Unique identifier of the resource
1
No content
No content
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
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
List of MarketPlaceAttributeValue data
Unauthorized Access
Forbidden
Server Error
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-08-29T19:57:19.335Z",
"modified_date": "2025-08-29T19:57:19.335Z"
}
]
}
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
Successfully created
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
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-08-29T19:57:19.335Z"
}
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
Successfully updated
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
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-08-29T19:57:19.335Z",
"modified_date": "2025-08-29T19:57:19.335Z"
}
Was this helpful?