SalesChannelMappedProduct
Get details of a specific mapped product associated with a sales channel.
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
idintegerRequiredExample:
Unique identifier of the resource
1
Responses
200
Details of the mapped product
application/json
400
Required field(s) are missing, data is invalid, or the action is not allowed.
application/json
401
Unauthorized Access
application/json
406
A custom 406 error occurs due to different validation failures in viewset or service level, such as uniqueness checks or other service-related exceptions.
application/json
500
Server Error
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"
}
Retrieve a list of mapped products associated with a specific sales channel.
Authorizations
Path parameters
channel_idintegerRequiredExample:
The channel ID of the resource.
5
Responses
200
List of mapped products
application/json
400
Required field(s) are missing, data is invalid, or the action is not allowed.
application/json
401
Unauthorized Access
application/json
500
Server Error
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?