Related Products
Retrieves a list of vendor-related products for the vendor, based on specified query parameters.
The number of products to return per page.
The offset (starting point) to fetch products from.
Filter to get the total count of related products.
Successfully got your product list.
Unauthorized access. Authentication required.
Internal server error. An error occurred on the server.
GET /backend/api/vendor-related-product/vendor-related-product-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got your product list.</message>
</object>
Retrieves detailed information of a specific vendor-related product.
The ID of the vendor-related product to fetch details for.
Successfully got the data.
Unauthorized access. Authentication required.
Internal server error. An error occurred on the server.
GET /backend/api/vendor-related-product/vendor-related-product-details/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the data</message>
</object>
Updates the related products for a specific product.
List of related product IDs to be updated.
ID of the main product.
Successfully updated the vendor related products.
Bad Request - Invalid data provided.
Unauthorized - Authentication required.
Internal Server Error.
POST /backend/api/vendor-related-product/update-vendor-related-product HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 40
"relatedProductId[]=[1]&productId=1"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully updated the vendor related products.</message>
</object>
Last updated