Archeive Orders
Fetches a list of archived orders based on optional filters such as limit, offset, keyword, sku, status, price, and date range.
Maximum number of results to return.
10
Number of results to skip.
0
Keyword to filter results.
Product SKU to filter results.
Order status to filter results.
Price to filter results.
0
Whether to include the total count (0 or 1).
Start date for the range filter (format: YYYY-MM-DD).
End date for the range filter (format: YYYY-MM-DD).
Whether to enable key-up filter (true or false).
false
Bearer token for vendor authentication
Successfully retrieved the Archived Order list
Invalid input data
Internal server error
GET /backend/api/vendor-order/archive-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 archive list</message>
</object>
Fetches detailed information of a specific archived order based on the provided vendorOrderArchiveId.
The ID of the archived order to fetch details for.
Bearer token for vendor authentication
Successfully retrieved the Archive Order Detail
Invalid input data
Internal server error
GET /backend/api/vendor-order/archive-order-detail/{vendorOrderArchiveId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully shown the archive order detail</message>
</object>
Revokes the archive status of a specific vendor order.
Bearer token for vendor authentication
The ID of the vendor order to revoke archive status.
Successfully revoked the order archive
Invalid request or missing parameters
Internal server error
POST /backend/api/vendor-order/revoke-vendor-order-archive HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: multipart/form-data
Accept: */*
Content-Length: 19
{
"vendorOrderId": 1
}
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully revoked order archive</message>
</object>
Last updated