Get All Products
Get the full list of product objects from a list of given productIds. Returns all active products if no ids are provided. Allows Anonymous.
GET
/v1/products
AuthorizationBasic <token>
Basic Authorization header using the Bearer scheme.
In: header
Authorization<token>
JWT Authorization header using the Bearer scheme.
In: header
Query Parameters
skip?integer
Format
int32
take?integer
Format
int32
productIds?array<string>
Response Body
curl -X GET "https://loading/v1/products?skip=0&take=0&productIds=string"
[
{
"item": "string",
"title": "string",
"link": "string",
"image": "string",
"zoomImage": "string",
"categories": [
0
],
"extraCategories": [
"string"
],
"available": true,
"description": "string",
"price": 0.1,
"mSrp": 0.1,
"brand": "string",
"colours": [
"string"
],
"sizes": [
"string"
],
"productCode": "string",
"productSku": "string"
}
]
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
{
"succeeded": true,
"errors": [
{
"message": "string"
}
]
}
How is this guide?