SalesChannelMappedProduct

Retrieve a mapped product

get

Get details of a specific mapped product associated with a sales channel.

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
200
Details of the mapped product
application/json
get
GET /api/v1/channel/{channel_id}/mapped_products/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "pk": 1,
  "mapped_attributes": {},
  "mapped_attribute_values": {
    "ANY_ADDITIONAL_PROPERTY": {
      "attribute_name": "text",
      "label": "text",
      "value": "text",
      "attribute_remote_id": "text"
    }
  },
  "attribute_set_id": 1,
  "attribute_set_name": "text",
  "attribute_set_remote_id": "text",
  "modified_date": "2025-06-27T09:49:12.167Z"
}

List mapped products

get

Retrieve a list of mapped products associated with a specific sales channel.

Authorizations
Path parameters
channel_idintegerRequired

The channel ID of the resource.

Example: 5
Responses
200
List of mapped products
application/json
get
GET /api/v1/channel/{channel_id}/mapped_products/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "count": 1,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "pk": 1,
      "mapped_attributes": {},
      "mapped_attribute_values": {
        "ANY_ADDITIONAL_PROPERTY": {
          "attribute_name": "text",
          "label": "text",
          "value": "text",
          "attribute_remote_id": "text"
        }
      },
      "attribute_set_id": 1,
      "attribute_set_name": "text",
      "attribute_set_remote_id": "text",
      "modified_date": "2025-06-27T09:49:12.167Z"
    }
  ]
}

Was this helpful?