get
GET /backend/api/admin-vendor-order 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>
get
GET /backend/api/admin-vendor-order/order-detail HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully shown the order detail</message>
	<orderDetail>
		<orderId>1628</orderId>
		<vendorName>Vendor A</vendorName>
		<orderStatus>Completed</orderStatus>
		<orderDate>2024-01-01T12:00:00Z</orderDate>
		<totalAmount>200.5</totalAmount>
		<items>
			<itemId>101</itemId>
			<itemName>Product A</itemName>
			<quantity>2</quantity>
			<price>50.25</price>
		</items>
	</orderDetail>
</object>
get
GET /backend/api/admin-vendor-order/vendor-order-log-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 seller order status log list</message>
	<logList>
		<logId>5001</logId>
		<status>Shipped</status>
		<date>2024-01-15T14:00:00Z</date>
		<description>Order has been shipped to the vendor</description>
	</logList>
</object>
get
GET /backend/api/order-status/order-status-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the complete order status list</message>
	<orderStatusList>
		<statusId>1</statusId>
		<statusName>Pending</statusName>
		<description>The order is pending</description>
	</orderStatusList>
</object>
get
GET /backend/api/admin-vendor-order/order-export-pdf HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully exported the order as a PDF</message>
	<pdfUrl>http://139.59.67.17/backend/api/downloads/order-1628.pdf</pdfUrl>
</object>
get
GET /backend/api/order/back-order-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully shown the Back Order list</message>
</object>
get
GET /backend/api/order/failed-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 failed order list</message>
</object>
get
GET /backend/api/order/order-detail HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully shown the order detail</message>
</object>
get
GET /backend/api/admin-vendor-payment/payment-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>text</message>
</object>
get
GET /backend/api/admin-cart HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>text</message>
</object>
get
GET /backend/api/admin-cart/{cartId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>text</message>
</object>
put
PUT /backend/api/admin-cart/abandoned HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully Deleted Cart List...!</message>
</object>
post
POST /backend/api/order/update-payment-status HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 38

"orderId='1628'&paymentStatusId=1"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated the Payment Status</message>
</object>
post
POST /backend/api/order/update-main-order HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 98

"orderId=1619&paymentStatus=2&paymentMethod=1&paymentRefId='2432345'&paymentDetail='ds'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully updated your order</message>
</object>
post
POST /backend/api/admin-cart/abandoned-cart-email HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 25

"id=1&message='text'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>text</message>
</object>
post
POST /backend/api/admin-cart/cart-export HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 21

"customerId='text'"
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>text</message>
</object>