Data Export
Fetches a paginated list of export logs.
The number of records to fetch per page.
10
The offset for pagination.
0
The current page number for pagination.
1
Flag to include count of total records (1 = include, 0 = exclude).
0
Successfully fetched the export log list.
Bad Request
Internal Server Error
GET /backend/api/vendor-export-log HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the export log list !!</message>
</object>
Fetches a list of failed orders in Excel format.
Flag to filter for failed orders.
true
Specific order ID to filter the results.
Successfully fetched the failed order Excel list.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/failed-order-excel-list/ HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully fetched the failed order Excel list.</message>
</object>
Creates a new export log for failed orders.
The number of records available for export.
The name of the module (e.g., 'Failed Orders').
The ID of the user creating the export log.
Export log created successfully.
Bad Request
Internal Server Error
POST /backend/api/vendor-export-log HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 51
"recordAvailable=1&module='text'&createdBy=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Export log created successfully</message>
</object>
Fetches the count of failed vendor orders.
Flag to request the count of failed orders.
1
Successfully fetched the count of failed orders.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/vendor-failed-order-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the cancel request count</message>
</object>
Exports customer data in an Excel file format.
Indicates whether to include failed orders.
The order ID to filter the export.
File exported successfully.
Bad Request
Internal Server Error
GET /backend/api/vendor-order/export-customer HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>binary</object>
Fetch the list of customers who purchased products, with optional filtering by customer ID and count.
The number of records to fetch.
The ID of the customer to filter the list.
Successfully retrieved the list of customers
Bad Request
Internal Server Error
GET /backend/api/vendor-order/purchased-customer-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Got Seller Order List</message>
</object>
Fetch a list of all products in Excel format.
Include the count of products in the response (optional)
Successfully fetched the product list in Excel format.
Bad Request
Internal Server Error
GET /backend/api/vendor-product/allproduct-excel-list/ HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>binary</object>
Last updated