Get Catalogue List
GET
/api/v2/public/catalogue/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.omisell.com/api/v2/public/catalogue/list?page=1&page_size=20&store_id=1&status=all&status=active' \
--header 'Authorization;' \
--header 'Seller-ID;' \
--header 'Country;'
Response Response Example
{
"data": {
"count": 0,
"next": "string",
"previous": null,
"results": [
{
"store_id": 0,
"store_name": "string",
"platform": "string",
"platform_logo": "string",
"catalogue_id": 0,
"avatar": "string",
"name": "string",
"sku": "string",
"category_id": "string",
"external_id": "string",
"link": "string",
"cost": 0,
"price": 0,
"price_sale": 0,
"currency": "string",
"weight": 0,
"volume": "string",
"images": [
"string"
],
"count_variant": 0,
"is_combo": true,
"status": "string",
"status_display": "string",
"created_time": 0,
"updated_time": 0,
"addition_stock": 0,
"reserved_stock": 0,
"external_stock": 0
}
]
},
"error": true,
"error_code": 0,
"attr_error": null,
"messages": "string",
"request_id": "string"
}
Request
Query Params
page
string
optional
Example:
1
page_size
string
optional
Example:
20
store_id
integer
optional
Example:
1
status
array[string]
optional
Example:
["all","active"]
Header Params
Content-Type
string
required
Default:
application/json
Authorization
string
required
Default:
Omi {{Token}}
Seller-ID
number
optional
Country
string
optional
Examples:
THVNPHIDMY
Responses
Modified at 2024-02-26 04:49:14