List active simple products with pricing and stock
Token credential sent in the Authorization header, in the form: Token <your-token>. Requires a staff (admin) account.
ID of a segment whose price list and stock list should be used to resolve price, currency, and stock for each product.
When omitted, the product's default price list and stock list are used.
5Filter by exact product ID.
Filter products whose ID is greater than the given value.
Filter products whose ID is greater than or equal to the given value.
Filter products whose ID is less than the given value.
Filter products whose ID is less than or equal to the given value.
Filter by a comma-separated list of product IDs.
1,2,3Filter by a comma-separated list of product IDs. Equivalent to id__in.
1,2,3Filter by exact SKU.
SHOE-RUN-BLU-42Filter by exact SKU. Equivalent to sku.
SHOE-RUN-BLU-42Filter by a comma-separated list of SKUs.
SHOE-RUN-BLU-42,SHOE-RUN-RED-42Filter by exact base code.
SHOE-RUN-BLUFilter by exact base code. Equivalent to base_code.
SHOE-RUN-BLUThe page number to return.
1The number of items to return per page.
10A paginated list of products.
Paginated list of advanced product representations.
Total number of products matching the current filters.
150The URL of the next page of results, when available.
The URL of the previous page of results, when available.
Authentication credentials were not provided or are invalid.
The authenticated user does not have administrator privileges.
GET /api/remote/1/products_advanced/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 150,
"next": null,
"previous": null,
"results": [
{
"pk": 12345,
"name": "Premium Running Shoes - Blue/White",
"base_code": "SHOE-RUN-BLU",
"sku": "SHOE-RUN-BLU-42",
"product_type": "-1",
"is_active": true,
"price": "149.99",
"currency": "try",
"stock": 25,
"category": "Running Shoes",
"product_image": "https://cdn.akinon.com/products/shoe-main.jpg",
"variants": {
"Color": "Blue",
"Size": "42"
}
}
]
}Last updated
Was this helpful?

