Product List
Successfully got your product list.
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-product/ HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
No content
Creates a new product or updates an existing product in the vendor's catalog.
1 or 2
Name of the product (max 255 characters)
Detailed description of the product
Stock Keeping Unit (SKU) (max 64 characters)
Universal Product Code
Harmonized System Nomenclature
URL-friendly identifier for the product
Available stock quantity
Array of category IDs
URL or path to the product image
Price of the product
Location of the product
Status indicating if the product is out of stock
Flag indicating if shipping is required
Date when the product is available
Sorting order of the product (max 4 digits)
Flag indicating the default image
Comma-separated list of related product IDs
Packing cost of the product
Shipping cost of the product
Tax applied to the product
Type of tax applied to the product
Other charges applied to the product
Highlights of the product
Discounts applied to the product
Special attributes for the product
Tiered pricing for the product
Flag indicating if tiered pricing is available
Width of the product
Height of the product
Status of the product (e.g., active or inactive)
Weight of the product
Length of the product
File name for the product
Container name for storing product data
Product created or updated successfully.
Bad request. Invalid input data.
Internal server error.
POST /backend/api/vendor-product/ HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 629
"productType='text'&productName='text'&productDescription='text'&sku='text'&upc='text'&hsn='text'&productSlug='text'&quantity=1&categoryId=[1]&image='text'&price=1&location='text'&outOfStockStatus=1&requiredShipping=1&dateAvailable='2025-08-30T00:07:25.891Z'&sortOrder=1&defaultImage=1&relatedProductId='text'&packingCost=1&shippingCost=1&tax=1&taxType=1&others=1&productHighlights='text'&productDiscount=[1]&productSpecial=[1]&tirePrices=[1]&hasTirePrice=1&width='text'&height='text'&status=1&weight='text'&length='text'&fileName='text'&containerName='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully created seller product</message>
</object>
Retrieves details of a specific product by its ID.
The ID of the product to retrieve details for
Successfully retrieved product details.
Bad Request
Unauthorized
Product not found
Internal Server Error
GET /backend/api/vendor-product/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get productDetail</message>
</object>
Deletes a product by its ID.
The ID of the product to delete
Product deleted successfully.
Bad Request
Unauthorized
Product not found
Internal Server Error
DELETE /backend/api/vendor-product/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully deleted your product</message>
</object>
Successfully retrieved vendor category list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-product/vendor-category-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the vendor category list</message>
</object>
Category IDs to filter the specification list
Successfully retrieved specification list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/specification HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got Specification List.</message>
</object>
Successfully retrieved all tax list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/tax/tax-list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get all tax list</message>
</object>
The ID of the product for which SEO needs to be created
SEO meta title for the product
SEO meta description for the product
SEO meta keywords for the product
SEO created successfully.
Bad Request
Unauthorized
Internal Server Error
POST /backend/api/vendor-product-seo/{productId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 75
"metaTagTitle='text'&metaTagDescription='text'&metaTagKeyword='text'"
No content
This endpoint allows you to save product specifications for a given product.
The ID of the product for which the specifications are being set
Product specifications as a JSON string
Product specification successfully saved
Bad Request. The data provided is not valid.
Internal Server Error.
POST /backend/api/vendor-product-specification HTTP/1.1
Host: 139.59.67.17
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 46
"productId=1&productSpecifications='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Saved Product Specification.</message>
</object>
Updates the attribute keyword for the specified product based on the attribute slug.
The ID of the product for which the attribute keyword needs to be updated
Successfully updated attribute keyword.
Bad request. Invalid data or missing parameters.
Unauthorized. Authentication required.
PUT /backend/api/vendor-product-specification/attribute-slug/product/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Updated Attribute keyword.</message>
</object>
This API retrieves a list of vendor specification families with optional pagination.
Number of records to return.
Number of records to skip.
If set to 1, returns only the count.
Successfully fetched vendor specification family list.
Failed to fetch vendor specification family list.
GET /backend/api/api/vendor-specification/vendor-family HTTP/1.1
Host: 139.59.67.17
Accept: */*
{
"status": 1,
"message": "Successfully fetched vendor specification family list.",
"data": [
{
"createdBy": "text",
"createdDate": "text",
"modifiedBy": "text",
"modifiedDate": "text",
"id": "text",
"familyName": "text",
"isActive": true,
"isDelete": true
}
]
}
This API retrieves a list of vendor categories with optional filters and pagination.
Number of records to return.
Number of records to skip.
Keyword to filter categories.
Family ID to filter categories.
If set to true, returns only the count of categories.
Successfully retrieved the vendor category list.
Failed to fetch vendor category list.
GET /backend/api/api/vendor-specification/vendor-category-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
{
"status": 1,
"message": "Successfully got the vendor category list.",
"data": [
{
"categoryId": "text",
"sortOrder": "text",
"parentInt": "text",
"categoryName": "text",
"levels": "text"
}
]
}
Last updated