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
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-06-27T08:57:12.427Z",
"modified_date": "2025-06-27T08:57:12.427Z"
}
]
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
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-06-27T08:57:12.427Z",
"modified_date": "2025-06-27T08:57:12.427Z"
}
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
GET /api/channel/{channel_id}/cancellation_request_images/updates/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"created_date": "2025-06-27T08:57:12.427Z",
"modified_date": "2025-06-27T08:57:12.427Z"
}
]
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
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-06-27T08:57:12.427Z",
"modified_date": "2025-06-27T08:57:12.427Z"
}
]
}
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
GET /api/channel/{channel_id}/cancellation_request_images/inserts/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"created_date": "2025-06-27T08:57:12.427Z",
"modified_date": "2025-06-27T08:57:12.427Z"
}
]
Was this helpful?