SalesChannelProductImage
Retrieves a specific product image associated with a sales channel.
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/channel/{channel_id}/product_images/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
Get details of a specific product image associated with a sales channel.
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/channel/{channel_id}/product_images/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
Retrieve a list of product images associated with a specific sales channel.
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
Filter by Product ID.
123
Filter by multiple primary keys (comma-separated).
Filters by multiple ids (comma-separated list of integers)
Filter by seller product status (True or False).
Filter by product type.
GET /api/v1/channel/{channel_id}/product_images/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
List of product images
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
}
Retrieve a detailed list of product images associated with a specific sales channel.
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/channel/{channel_id}/product_images/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
}
Retrieve a list of product images that are pending insertion into the system.
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/channel/{channel_id}/product_images/inserts/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
Retrieve a list of product images that are pending updates in the system.
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/channel/{channel_id}/product_images/updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
Retrieve a list of product images that are pending either insertion or updates in the system.
The channel ID of the resource.
5
Specifies the page number of the current dataset
1
Indicates the number of rows on the current page.
10
GET /api/v1/channel/{channel_id}/product_images/inserts_or_updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"pk": 1,
"product": 1,
"source": "unified",
"modified_date": "2025-06-27T08:53:13.894Z",
"created_date": "2025-06-27T08:53:13.894Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
Was this helpful?