Baskets
This method returns details about a specific item in a shopping basket, including its ID, quantity, product reference, and version. It also includes information such as the associated basket ID, product ID, and any additional attributes (like tax rate, unit price, image, and extra product details), if available.
Query parameter attributes
used to filter results based on specific conditions.
Query parameter attributes_kwargs
used to filter results based on specific conditions.
Query parameter basket
used to filter results based on specific conditions.
Query parameter created_date
used to filter results based on specific conditions.
Query parameter currency_type
used to filter results based on specific conditions.
Query parameter datasource
used to filter results based on specific conditions.
Query parameter extra_product_price
used to filter results based on specific conditions.
Query parameter extra_product_stock
used to filter results based on specific conditions.
Query parameter id
used to filter results based on specific conditions.
Filters records where id
is greater than the given value.
Filters records where id
is greater than or equal to the given value.
Filters records where id
is less than the given value.
Filters records where id
is less than or equal to the given value.
Query parameter image
used to filter results based on specific conditions.
Limits the number of results returned in the response.
Query parameter localized_attributes
used to filter results based on specific conditions.
Query parameter localized_attributes_kwargs
used to filter results based on specific conditions.
Query parameter modified_date
used to filter results based on specific conditions.
Filters records where modified_date
is greater than the given value.
Filters records where modified_date
is greater than or equal to the given value.
Filters records where modified_date
is less than the given value.
Filters records where modified_date
is less than or equal to the given value.
Query parameter page
used to filter results based on specific conditions.
Query parameter parent
used to filter results based on specific conditions.
Query parameter product
used to filter results based on specific conditions.
Query parameter quantity
used to filter results based on specific conditions.
Query parameter reference
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
Query parameter tax_rate
used to filter results based on specific conditions.
Query parameter unit_price
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/baskets/basket-items/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response for status code 200.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"attributes": null,
"attributes_kwargs": null,
"basket": 1,
"created_date": "2025-06-27T08:46:54.389Z",
"currency_type": "try",
"datasource": 1,
"extra_product_price": 1,
"extra_product_stock": 1,
"id": 1,
"image": "https://example.com",
"localized_attributes": null,
"localized_attributes_kwargs": null,
"modified_date": "2025-06-27T08:46:54.389Z",
"parent": 1,
"product": 1,
"quantity": 1,
"reference": "text",
"tax_rate": "text",
"unit_price": "text",
"version": 1
}
]
}
This method returns details about a specific item in a shopping basket, including its ID, quantity, product reference, and version. It also includes information such as the associated basket ID, product ID, and any additional attributes (like tax rate, unit price, image, and extra product details), if available. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this basket item.
GET /api/v1/remote/1/data-warehouse/baskets/basket-items/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"attributes": null,
"attributes_kwargs": null,
"basket": 1,
"created_date": "2025-06-27T08:46:54.389Z",
"currency_type": "try",
"datasource": 1,
"extra_product_price": 1,
"extra_product_stock": 1,
"id": 1,
"image": "https://example.com",
"localized_attributes": null,
"localized_attributes_kwargs": null,
"modified_date": "2025-06-27T08:46:54.389Z",
"parent": 1,
"product": 1,
"quantity": 1,
"reference": "text",
"tax_rate": "text",
"unit_price": "text",
"version": 1
}
This method returns details about a specific shopping basket, including its ID, status, creation and modification timestamps, version, and associated voucher code. It also provides information about the user and any namespaces linked to the basket, if applicable.
Query parameter created_date
used to filter results based on specific conditions.
Query parameter id
used to filter results based on specific conditions.
Filters records where id
is greater than the given value.
Filters records where id
is greater than or equal to the given value.
Filters records where id
is less than the given value.
Filters records where id
is less than or equal to the given value.
Limits the number of results returned in the response.
Query parameter modified_date
used to filter results based on specific conditions.
Filters records where modified_date
is greater than the given value.
Filters records where modified_date
is greater than or equal to the given value.
Filters records where modified_date
is less than the given value.
Filters records where modified_date
is less than or equal to the given value.
Query parameter namespace
used to filter results based on specific conditions.
Query parameter page
used to filter results based on specific conditions.
Query parameter sort
used to filter results based on specific conditions.
Query parameter status
used to filter results based on specific conditions.
Query parameter user
used to filter results based on specific conditions.
Query parameter voucher_code
used to filter results based on specific conditions.
GET /api/v1/remote/1/data-warehouse/baskets/baskets/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response for status code 200.
{
"count": 123,
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2",
"results": [
{
"created_date": "2025-06-27T08:46:54.389Z",
"id": 1,
"modified_date": "2025-06-27T08:46:54.389Z",
"namespace": "text",
"status": "active",
"user": 1,
"version": 1,
"voucher_code": "text"
}
]
}
This method returns details about a specific shopping basket, including its ID, status, creation and modification timestamps, version, and associated voucher code. It also provides information about the user and any namespaces linked to the basket, if applicable. This endpoint retrieves a specific record by its unique identifier.
A unique integer value identifying this basket.
GET /api/v1/remote/1/data-warehouse/baskets/baskets/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"created_date": "2025-06-27T08:46:54.389Z",
"id": 1,
"modified_date": "2025-06-27T08:46:54.389Z",
"namespace": "text",
"status": "active",
"user": 1,
"version": 1,
"voucher_code": "text"
}
Was this helpful?