Get Product List
GET
/api/v2/public/product/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.omisell.com/api/v2/public/product/list?page=1&page_size=20' \
--header 'Authorization;' \
--header 'Seller-ID;' \
--header 'Country;'
Response Response Example
{
"data": {
"count": 0,
"next": "string",
"previous": null,
"results": [
"string"
]
},
"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
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-04-03 08:41:51