SalesChannelMarketPlaceAttributeSet

Retrieve marketplace attribute set

get

Get details of a specific marketplace attribute set

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
200
Marketplace Attribute Set details
application/json
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"
}

Update a MarketPlaceAttributeSet data for given id

put

Updates a instance of MarketPlaceAttributeSet data

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 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
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 a marketplace attribute set

delete

Delete an existing marketplace attribute set

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
204
Attribute deleted successfully
delete
DELETE /api/v1/channel/{channel_id}/attribute_sets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*

No content

Update a MarketPlaceAttributeSet data for given id

patch

Updates a instance of MarketPlaceAttributeSet data

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 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
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"
}

List MarketPlace Attribute Set results

get

Lists all of the records for MarketPlace Attribute Set data

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
Responses
200
List of marketplace attribute sets
application/json
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"
    }
  ]
}

Create Marketplace Attribute Set

post

Creates MarketPlaceAttributeSet data

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 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?