Archeived Payments
Fetches the list of archived payments with pagination.
The number of results to return per page.
10
The starting point for the query, used for pagination.
0
The current page of results.
1
Flag to indicate if the count of total results should be returned.
0
Bearer token for vendor authentication
Successfully retrieved the archived payment list.
Bad Request
Internal Server Error
GET /backend/api/vendor-sales/archive-payment-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 payment list</message>
</object>
This endpoint revokes a previously archived vendor payment using the archive ID.
Bearer token for vendor authentication
Successfully revoked the vendor payment archive.
Bad Request
Internal Server Error
POST /backend/api/vendor-sales/revoke-vendor-payment-archive HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 28
"vendorPaymentArchiveId=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Payment revoked successfully.</message>
</object>
Exports the vendor sales data based on the provided vendor order ID.
The ID of the vendor order for which the sales data is to be exported.
Bearer token for vendor authentication
Successfully exported vendor sales data.
Bad Request
Vendor order not found
Internal Server Error
GET /backend/api/vendor-sales/vendor-sales-export HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Vendor sales data exported successfully.</message>
<data>data.csv</data>
</object>
Last updated