SalesChannelProductImage
Retrieves a specific product image associated with a sales channel.
The channel ID of the resource.
5
Unique identifier of the resource
1
Product image
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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
Product image with details
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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.
List of product images
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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
List of product images
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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
List of product images to insert
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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
List of product images to update
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"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
List of product images to insert or update
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
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-08-30T04:19:26.716Z",
"created_date": "2025-08-30T04:19:26.716Z",
"height": 1,
"width": 1,
"hash": "text",
"status": "active",
"is_active": true,
"order": 1,
"object_id": 1,
"content_type": "text"
}
]
Was this helpful?