SalesChannelFailedIntegrations
Retrieve a specific Sales Channel Failed Integration by ID
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/channel/{channel_id}/failed_integrations/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
Update a specific Sales Channel Failed Integration by ID
The channel ID of the resource.
5
Unique identifier of the resource
1
Unique identifier for the failed integration
Foreign key to Channel model
Version date of the integration attempt (indexed)
Type of reason for failure
Whether the failed integration is active
true
Foreign key to ContentType model for polymorphic relationship
ID of the related object
Date when the failed integration record expires
Number of retry attempts made
1
Maximum number of retry attempts allowed
1
Interval between retry attempts in seconds
0
Foreign key to IntegrationAction model
ID reference to related log entry
PUT /api/v1/channel/{channel_id}/failed_integrations/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 261
{
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
No content
Delete Sales Channel Failed Integration for a specific channel.
The channel ID of the resource.
5
Unique identifier of the resource
1
DELETE /api/v1/channel/{channel_id}/failed_integrations/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Partial update a specific Sales Channel Failed Integration by ID
The channel ID of the resource.
5
Unique identifier of the resource
1
Unique identifier for the failed integration
Foreign key to Channel model
Version date of the integration attempt (indexed)
Type of reason for failure
Whether the failed integration is active
true
Foreign key to ContentType model for polymorphic relationship
ID of the related object
Date when the failed integration record expires
Number of retry attempts made
1
Maximum number of retry attempts allowed
1
Interval between retry attempts in seconds
0
Foreign key to IntegrationAction model
ID reference to related log entry
PATCH /api/v1/channel/{channel_id}/failed_integrations/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 261
{
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
No content
List Sales Channel Failed Integrations
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
ID of the channel the customer belongs to
5
GET /api/v1/channel/{channel_id}/failed_integrations/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"pk": 1,
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
]
}
Create Sales Channel Failed Integration for a specific channel.
The channel ID of the resource.
5
Unique identifier for the failed integration
Foreign key to Channel model
Version date of the integration attempt (indexed)
Type of reason for failure
Whether the failed integration is active
true
Foreign key to ContentType model for polymorphic relationship
ID of the related object
Date when the failed integration record expires
Number of retry attempts made
1
Maximum number of retry attempts allowed
1
Interval between retry attempts in seconds
0
Foreign key to IntegrationAction model
ID reference to related log entry
POST /api/v1/channel/{channel_id}/failed_integrations/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 261
{
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
{
"pk": 1,
"channel": 1,
"version_date": "2025-06-27T08:38:26.936Z",
"reason_type": "mapping",
"is_active": true,
"content_type": 1,
"object_id": 1,
"expiration_date": "2025-06-27T08:38:26.936Z",
"retry_count": 1,
"max_retry_count": 1,
"retry_interval": 0,
"integration_action": 1,
"log_id": 1
}
Was this helpful?