SalesChannelMarketPlaceAttributeSet
Get details of a specific marketplace attribute set
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Responses
200
Marketplace Attribute Set details
application/json
403
Forbidden
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
get
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-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
Updates a instance of MarketPlaceAttributeSet data
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Body
pkintegerRead-onlyOptional
namestring · max: 255Optional
channelinteger | nullableOptional
remote_idstring | nullableOptional
created_datestring · date-timeOptional
modified_datestring · date-timeOptional
Responses
200
OK
application/json
400
Required field(s) are missing, data is invalid, or the action is not allowed.
application/json
403
Forbidden
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
put
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-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
Delete an existing marketplace attribute set
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Responses
204
Attribute deleted successfully
400
Bad Request
401
Unauthorized
delete
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
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Body
pkintegerRead-onlyOptional
namestring · max: 255Optional
channelinteger | nullableOptional
remote_idstring | nullableOptional
created_datestring · date-timeOptional
modified_datestring · date-timeOptional
Responses
200
OK
application/json
400
Required field(s) are missing, data is invalid, or the action is not allowed.
application/json
403
Forbidden
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
patch
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-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
Lists all of the records for MarketPlace Attribute Set data
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
Query parameters
pageinteger · min: 1OptionalDefault:
Specifies the page number of the current dataset
1
limitinteger · min: 1OptionalDefault:
Indicates the number of rows on the current page.
10
Responses
200
List of marketplace attribute sets
application/json
403
Forbidden
404
The given resource or object was not found or does not exist.
application/json
500
Server Error
get
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-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
]
}
Creates MarketPlaceAttributeSet data
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
Body
pkintegerRead-onlyOptional
namestring · max: 255Optional
channelinteger | nullableOptional
remote_idstring | nullableOptional
created_datestring · date-timeOptional
modified_datestring · date-timeOptional
Responses
201
Created
application/json
post
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-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
201
Created
{
"pk": 1,
"name": "text",
"channel": 1,
"remote_id": "text",
"created_date": "2025-06-27T08:57:49.003Z",
"modified_date": "2025-06-27T08:57:49.003Z"
}
Was this helpful?