SalesChannelMarketPlaceAttribute
Retrieve details of a marketplace attribute by its unique ID
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/channel/{channel_id}/attributes/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:46:54.899Z"
}
Update an existing marketplace attribute
The channel ID of the resource.
5
Unique identifier of the resource
1
Name of the attribute
Associated channel ID
Associated schema ID, can be null
PUT /api/channel/{channel_id}/attributes/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"name": "text",
"channel": 1,
"locale_attribute_schema": 1
}
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:46:54.899Z"
}
Delete an existing marketplace attribute
The channel ID of the resource.
5
Unique identifier of the resource
1
DELETE /api/channel/{channel_id}/attributes/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Update a specific field of a marketplace attribute
The channel ID of the resource.
5
Unique identifier of the resource
1
Name of the attribute
Associated channel ID
Associated schema ID, can be null
PATCH /api/channel/{channel_id}/attributes/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"name": "text",
"channel": 1,
"locale_attribute_schema": 1
}
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:46:54.899Z"
}
Retrieve a list of all attributes associated with a specific channel
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/channel/{channel_id}/attributes/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "https://example.com",
"previous": "https://example.com",
"results": [
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:46:54.899Z"
}
]
}
Create a new marketplace attribute for a specific channel
The channel ID of the resource.
5
Name of the attribute
Associated channel ID
Associated schema ID, can be null
POST /api/channel/{channel_id}/attributes/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"name": "text",
"channel": 1,
"locale_attribute_schema": 1
}
{
"pk": 1,
"name": "text",
"channel": 1,
"locale_attribute_schema": 1,
"modified_date": "2025-06-27T08:46:54.899Z"
}
Was this helpful?