Name | Type | Description | |
---|
api_key | string | Your API-key | |
marketplace_user_id | number | marketplace_user_id | |
length | number(optional) | length |
|
start | number(optional) | Start here | |
user_type | number(optional) | 2 : for admin, 3 : for merchant | |
verification_status | number(optional) | verification_status [ 1= for verified, 2= for not verified ] | |
sSearch | string(optional) | What you want to search(email or name) | |
sortCol | number(optional) | If sort column equals to 1 then it will sort according to first name , default is by customer id | |
sortDir | string(optional) | Default sort direction is descending. Send asc for ascending | |
searchBy | object(optional) | searchBy | |
isClosed | number | isClosed | |
Request
Body Params application/json
{
"api_key" : "{{apikey}}",
"marketplace_user_id" : 510001,
"length" : 10,
"start" : 2,
"user_type" : 2,
"verification_status" : 1,
"sSearch" : "",
"sortCol" : "1",
"sortDir" : "asc",
"searchBy" : { "xyz" : "xyz"},
"isClosed" : 0
}
Request Code Samples
curl --location --request POST 'https://api.yelo.red/open/marketplace/getMerchantList' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key" : "{{apikey}}",
"marketplace_user_id" : 510001,
"length" : 10,
"start" : 2,
"user_type" : 2,
"verification_status" : 1,
"sSearch" : "",
"sortCol" : "1",
"sortDir" : "asc",
"searchBy" : { "xyz" : "xyz"},
"isClosed" : 0
}'
Responses
application/json Modified at 2025-05-20 06:54:40