Dashboard
Retrieve the total counts for different dashboard categories for the vendor.
Bearer token for vendor authentication
Successfully retrieved dashboard counts.
Unauthorized access. Token is missing or invalid.
Internal server error.
GET /backend/api/vendor/total-Dashboard-counts HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get Total Dashboard count</message>
</object>
Retrieve the list of orders for the vendor, with pagination support using limit and offset query parameters.
The maximum number of orders to return.
4
The starting point for pagination.
0
Bearer token for vendor authentication.
Successfully retrieved the complete order list.
Unauthorized access. Token is missing or invalid.
Internal server error.
GET /backend/api/vendor-order/order-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the complete order list</message>
</object>
Retrieve the list of payments for the vendor, with pagination support using limit and offset query parameters.
The maximum number of payments to return.
4
The starting point for pagination.
0
Bearer token for vendor authentication.
Successfully retrieved the complete payment list.
Unauthorized access. Token is missing or invalid.
Internal server error.
GET /backend/api/vendor-sales/payment HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the complete payment list</message>
</object>
Retrieve the list of top-selling products for the vendor based on a specified duration.
The duration for which to retrieve top-selling products (e.g., 1 for past month).
Bearer token for vendor authentication.
Successfully retrieved the top-selling product list.
Unauthorized access. Token is missing or invalid.
Internal server error.
GET /backend/api/vendor-order/top-selling-productlist HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got yop selling product</message>
</object>
Retrieve the order count data for the vendor based on the specified duration.
The duration for which to retrieve the order count (e.g., 1 for past month).
Bearer token for vendor authentication.
Successfully retrieved the order graph data.
Unauthorized access. Token is missing or invalid.
Internal server error.
GET /backend/api/vendor/order-graph HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get order count.</message>
</object>
Last updated