SalesChannelMarketPlaceAttribute
Retrieve details of a marketplace attribute by its unique ID
The channel ID of the resource.
5Unique identifier of the resource
1Successful response
Bad Request
Unauthorized
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-11-30T08:56:27.491Z"
}Update an existing marketplace attribute
The channel ID of the resource.
5Unique identifier of the resource
1Name of the attribute
Associated channel ID
Associated schema ID, can be null
Successfully updated
Invalid request
Attribute not found
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-11-30T08:56:27.491Z"
}Delete an existing marketplace attribute
The channel ID of the resource.
5Unique identifier of the resource
1Attribute deleted successfully
Bad Request
Unauthorized
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.
5Unique identifier of the resource
1Name of the attribute
Associated channel ID
Associated schema ID, can be null
Successfully updated
Invalid request
Attribute not found
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-11-30T08:56:27.491Z"
}Retrieve a list of all attributes associated with a specific channel
The channel ID of the resource.
5Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Successful response
Bad Request
Unauthorized
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-11-30T08:56:27.491Z"
}
]
}Create a new marketplace attribute for a specific channel
The channel ID of the resource.
5Name of the attribute
Associated channel ID
Associated schema ID, can be null
Successfully created
Invalid request
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-11-30T08:56:27.491Z"
}Was this helpful?

