Customer

Get purchased customer list for a vendor

get

Retrieves a list of customers who have purchased from the vendor, with pagination support.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
countintegerOptional

An optional parameter to toggle count behavior.

Default: 0
Header parameters
AuthorizationstringRequired
Responses
200

Successfully retrieved the list of purchased customers.

get
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>

Get product viewed customer log

get

Retrieves a log of customers who have viewed a product, with pagination and filter options.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
currentPageintegerOptional

The current page number for pagination.

Default: 1
emailIdstringRequired

The email ID of the customer to filter by.

customerIdintegerRequired

The ID of the customer to filter the log by.

Header parameters
AuthorizationstringRequired
Responses
200

Successfully retrieved the customer view log list.

get
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>

Get customer purchased product log

get

Retrieves a log of products purchased by a customer, with pagination and filter options.

Query parameters
limitintegerOptional

The number of results to return.

Default: 10
offsetintegerOptional

The starting point for the result set.

Default: 0
currentPageintegerOptional

The current page number for pagination.

Default: 1
emailIdstringRequired

The email ID of the customer to filter by.

countintegerOptional

A parameter that may be used to toggle count behavior.

Default: 0
Header parameters
AuthorizationstringRequired
Responses
200

Successfully retrieved the customer purchased product log list.

get
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