SalesChannelMarketPlaceAttributeSetConfig
The channel ID of the resource.
5
Unique identifier of the resource
1
POST /api/v1/channel/{channel_id}/attribute_set_configs/category_node/{id} HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"attribute_set": 1
}
{
"pk": 1,
"attribute_set": 1,
"object_id": 1,
"content_type": "text",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z",
"url": "https://example.com"
}
The channel ID of the resource.
5
Unique identifier of the resource
1
GET /api/v1/channel/{channel_id}/attribute_set_configs/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"attribute_set": 1,
"object_id": 1,
"content_type": "text",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z",
"url": "https://example.com"
}
The channel ID of the resource.
5
Unique identifier of the resource
1
Input schema for creating or updating a MarketPlaceAttributeSetConfig instance.
ID of the MarketPlaceAttributeSet to associate with the content object.
ID of the target object to be linked to the attribute set.
Model name of the content type for the target object (must be a valid ContentType.model
value).
PUT /api/v1/channel/{channel_id}/attribute_set_configs/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"attribute_set": 1,
"object_id": 1,
"content_type": "text"
}
{
"pk": 1,
"attribute_set": 1,
"object_id": 1,
"content_type": "text",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z",
"url": "https://example.com"
}
The channel ID of the resource.
5
Unique identifier of the resource
1
DELETE /api/v1/channel/{channel_id}/attribute_set_configs/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
The channel ID of the resource.
5
Unique identifier of the resource
1
Input schema for creating or updating a MarketPlaceAttributeSetConfig instance.
ID of the MarketPlaceAttributeSet to associate with the content object.
ID of the target object to be linked to the attribute set.
Model name of the content type for the target object (must be a valid ContentType.model
value).
PATCH /api/v1/channel/{channel_id}/attribute_set_configs/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"attribute_set": 1,
"object_id": 1,
"content_type": "text"
}
{
"pk": 1,
"attribute_set": 1,
"object_id": 1,
"content_type": "text",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z",
"url": "https://example.com"
}
Fetches a list of all attribute set configs for the specified sales channel.
The channel ID of the resource.
5
Filter by content type model
Filter by related attribute set ID
1
Filter by object ID
Filter by creation date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
created_date__gt=2024-01-01T00:00:00Z
Filter by modification date using supported lookup expressions (e.g., gt
, gte
, lt
, lte
, date__gt
, etc.).
modified_date__lt=2024-01-01T00:00:00Z
GET /api/v1/channel/{channel_id}/attribute_set_configs/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"pk": 1,
"url": "https://example.com",
"attribute_set": "https://example.com",
"object_id": 1,
"content_type": "https://example.com",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z"
}
]
The channel ID of the resource.
5
Input schema for creating or updating a MarketPlaceAttributeSetConfig instance.
ID of the MarketPlaceAttributeSet to associate with the content object.
ID of the target object to be linked to the attribute set.
Model name of the content type for the target object (must be a valid ContentType.model
value).
POST /api/v1/channel/{channel_id}/attribute_set_configs/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"attribute_set": 1,
"object_id": 1,
"content_type": "text"
}
{
"pk": 1,
"attribute_set": 1,
"object_id": 1,
"content_type": "text",
"created_date": "2025-06-27T08:55:04.931Z",
"modified_date": "2025-06-27T08:55:04.931Z",
"url": "https://example.com"
}
Was this helpful?