View Customer
This API will view the customers
Request Body Parameters:
Name | Type | Description |
api_key | string | Your API-key |
is_vendor_verified | number(optional) | This flag is used when customer verification is on |
sSearch | string(optional) | What you want to search(email or name) |
marketplace_user_id | string(optional) | Your marketplace user id |
start | string(optional) | Start here(pagination columns) |
length | string(optional) | Length here(pagination columns) |
sortCol | string(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 |
Request
Body Params application/json
{
"api_key" : {{apikey}} ,
"is_vendor_verified" : 1,
"sSearch" : "test@email.com" ,
"marketplace_user_id" : 510001,
"start" : " " ,
"length" : " " ,
"sortCol" : "1" ,
"sortDir" : "asc"
}
Request Code Samples
curl --location --request GET 'https://api.yelo.red/open/customer/view' \
--header 'Content-Type: application/json' \
--data-raw '{
"api_key" : {{apikey}} ,
"is_vendor_verified" : 1,
"sSearch" : "test@email.com" ,
"marketplace_user_id" : 510001,
"start" : " " ,
"length" : " " ,
"sortCol" : "1" ,
"sortDir" : "asc"
}'
Responses
application/json Modified at 2024-04-17 07:11:33