SalesChannelMarketPlaceAttributeSet
Get details of a specific marketplace attribute set
The channel ID of the resource.
5
Unique identifier of the resource
1
Marketplace Attribute Set details
Forbidden
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/attribute_sets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
Updates a instance of MarketPlaceAttributeSet data
The channel ID of the resource.
5
Unique identifier of the resource
1
OK
Required field(s) are missing, data is invalid, or the action is not allowed.
Forbidden
The given resource or object was not found or does not exist.
Server Error
PUT /api/v1/channel/{channel_id}/attribute_sets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 131
{
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
Delete an existing marketplace attribute set
The channel ID of the resource.
5
Unique identifier of the resource
1
Attribute deleted successfully
No content
Bad Request
Unauthorized
DELETE /api/v1/channel/{channel_id}/attribute_sets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Updates a instance of MarketPlaceAttributeSet data
The channel ID of the resource.
5
Unique identifier of the resource
1
OK
Required field(s) are missing, data is invalid, or the action is not allowed.
Forbidden
The given resource or object was not found or does not exist.
Server Error
PATCH /api/v1/channel/{channel_id}/attribute_sets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 131
{
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
Lists all of the records for MarketPlace Attribute Set data
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
List of marketplace attribute sets
Forbidden
The given resource or object was not found or does not exist.
Server Error
GET /api/v1/channel/{channel_id}/attribute_sets/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
]
}
Creates MarketPlaceAttributeSet data
The channel ID of the resource.
5
Created
POST /api/v1/channel/{channel_id}/attribute_sets/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 131
{
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
Created
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-08-30T00:57:24.622Z",
"modified_date": "2025-08-30T00:57:24.622Z"
}
Was this helpful?