SalesChannelMarketPlaceAttributeValue

Retrieve a marketplace attribute value

get

Retrieves a marketplace attribute value

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 value details
application/json
get
GET /api/v1/channel/{channel_id}/attribute_values/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pk": 1,
  "attribute": 1,
  "label": "text",
  "value": "text",
  "created_date": "2025-06-27T08:14:14.311Z",
  "modified_date": "2025-06-27T08:14:14.311Z"
}

Delete a marketplace attribute value

delete

Deletes a marketplace attribute value via given id

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
204
No content
delete
DELETE /api/channel/{channel_id}/attribute_values/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*

No content

List of MarketPlaceAttributeValue data

get

Retrieves all data of MarketPlaceAttributeValue

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Responses
200
List of MarketPlaceAttributeValue data
application/json
get
GET /api/v1/channel/{channel_id}/attribute_values/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "pk": 1,
      "attribute": 1,
      "label": "text",
      "value": "text",
      "created_date": "2025-06-27T08:14:14.311Z",
      "modified_date": "2025-06-27T08:14:14.311Z"
    }
  ]
}

Create a new marketplace attribute value

post

Creates a new marketplace attribute value for a spesific channel (Channels are related with the attribute value's attribute data)

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Body
pkintegerRead-onlyOptional

Unique identifier of the attribute

attributeintegerRequired

Associated MarketPlaceAttribute id

labelstring · max: 750Required

Label value of the MarketPlaceAttributeValue data

valuestring | nullableOptional

Value of the MarketPlaceAttributeValue data

created_datestring · date-timeRead-onlyOptional

Creation date of the data

modified_datestring · date-timeRead-onlyOptional

Last modification date

Responses
201
Successfully created
application/json
post
POST /api/channel/{channel_id}/attribute_values/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "attribute": 1,
  "label": "text",
  "value": "text"
}
{
  "pk": 1,
  "name": "text",
  "channel": 1,
  "locale_attribute_schema": 1,
  "modified_date": "2025-06-27T08:14:14.311Z"
}

Update a marketplace attribute value

patch

Updates a marketplace attribute value via current 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

Unique identifier of the attribute

attributeintegerRequired

Associated MarketPlaceAttribute id

labelstring · max: 750Required

Label value of the MarketPlaceAttributeValue data

valuestring | nullableOptional

Value of the MarketPlaceAttributeValue data

created_datestring · date-timeRead-onlyOptional

Creation date of the data

modified_datestring · date-timeRead-onlyOptional

Last modification date

Responses
200
Successfully updated
application/json
patch
PATCH /api/v1/channel/{channel_id}/attribute_values/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 45

{
  "attribute": 1,
  "label": "text",
  "value": "text"
}
{
  "pk": 1,
  "attribute": 1,
  "label": "text",
  "value": "text",
  "created_date": "2025-06-27T08:14:14.311Z",
  "modified_date": "2025-06-27T08:14:14.311Z"
}

Was this helpful?