SalesChannelCancellationRequestImage
Returns a list of cancellation request images inserted or updated in the 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 image attributes
Filter by cancellation request ID
Filter by user who uploaded the image
List of cancellation request images to be inserted or updated
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/channel/{channel_id}/cancellation_request_images/inserts_or_updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"created_date": "2025-08-29T23:28:39.126Z",
"modified_date": "2025-08-29T23:28:39.126Z"
}
]
Returns details of a specific cancellation request image. Only accessible to authenticated users with JWT token.
The channel ID of the resource.
5
Unique identifier of the resource
1
Cancellation request image details
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
GET /api/channel/{channel_id}/cancellation_request_images/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"id": 1,
"cancellation_request": 1,
"image": "https://example.com",
"description": "text",
"attributes": {},
"uploaded_by": 1,
"created_date": "2025-08-29T23:28:39.126Z",
"modified_date": "2025-08-29T23:28:39.126Z"
}
Returns a list of cancellation request images that updated in the 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 image attributes
Filter by cancellation request ID
Filter by user who uploaded the image
List of cancellation request images to be updated
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/channel/{channel_id}/cancellation_request_images/updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"created_date": "2025-08-29T23:28:39.126Z",
"modified_date": "2025-08-29T23:28:39.126Z"
}
]
Returns a list of all cancellation request images with optional filtering
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 image attributes
Filter by cancellation request ID
Filter by user who uploaded the image
List of cancellation request images
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
Server Error
GET /api/channel/{channel_id}/cancellation_request_images/ HTTP/1.1
Host: sandbox.akinon.com
Accept: */*
{
"count": 1,
"next": "https://example.com",
"previous": "https://example.com",
"results": [
{
"created_date": "2025-08-29T23:28:39.126Z",
"modified_date": "2025-08-29T23:28:39.126Z"
}
]
}
Returns a list of cancellation request images inserted in the 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 image attributes
Filter by cancellation request ID
Filter by user who uploaded the image
List of cancellation request images to be inserted
Required field(s) are missing, data is invalid, or the action is not allowed.
The given resource or object was not found or does not exist.
GET /api/channel/{channel_id}/cancellation_request_images/inserts/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"created_date": "2025-08-29T23:28:39.126Z",
"modified_date": "2025-08-29T23:28:39.126Z"
}
]
Was this helpful?