Get Catalogue Products#
This API will enable you to get catalogs.#
Request Body Parameters:Name | Type | Description |
---|
api_key | string | Your API-key |
user_id | number | Your user Id |
marketplace_user_id | number | Your market place user Id |
limit | number | Number (for example 10 for fetching 10 products) |
offset | number | Offset denotes the starting point from where you want to fetch product |
parent_category_id | number | Catalogue id for which products need to be fetched |
Request
Body Params application/json
{
"api_key" : {{apikey}},
"marketplace_user_id" : 510001,
"user_id" : 510001,
"limit" : 10,
"offset" : 0,
"parent_category_id" : 3468353
}
Request Code Samples
curl --location --request POST 'https://api.yelo.red/open/catalogue/products' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key" : {{apikey}},
"marketplace_user_id" : 510001,
"user_id" : 510001,
"limit" : 10,
"offset" : 0,
"parent_category_id" : 3468353
}'
Responses
application/json Modified at 2024-04-17 07:11:33