Customer
Retrieves a list of customers who have purchased from the vendor, with pagination support.
The number of results to return.
10
The starting point for the result set.
0
An optional parameter to toggle count behavior.
0
Successfully retrieved the list of purchased customers.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/purchased-customer-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Got Seller Order List</message>
</object>
Retrieves a log of customers who have viewed a product, with pagination and filter options.
The number of results to return.
10
The starting point for the result set.
0
The current page number for pagination.
1
The email ID of the customer to filter by.
The ID of the customer to filter the log by.
Successfully retrieved the customer view log list.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/product-viewed-customer HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the customer view log list</message>
</object>
Retrieves a log of products purchased by a customer, with pagination and filter options.
The number of results to return.
10
The starting point for the result set.
0
The current page number for pagination.
1
The email ID of the customer to filter by.
A parameter that may be used to toggle count behavior.
0
Successfully retrieved the customer purchased product log list.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/customer-purchased-product HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Got Order Product List</message>
</object>
Last updated