Pricing
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
Fetch the list of all available seller price groups.
Limit the number of price groups to fetch
Skip the first 'n' number of price groups
Count the number of price groups available
Successfully retrieved seller price group list
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-price-group HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully get Seller Price Group List</message>
</object>
Creates a new seller price group with associated buyers, products, and schedules.
Name of the price group
Description of the price group
Indicates whether this is the default price group (0 or 1)
Status of the price group (1 for active, 0 for inactive)
Comma-separated list of buyer IDs to be added
Comma-separated list of buyer IDs to be removed
Comma-separated list of buyer group IDs to be added
Comma-separated list of buyer group IDs to be removed
JSON string of product details to be created
JSON string of price group schedules to be created
Comma-separated list of product group detail IDs to be removed
Successfully created the seller price group.
Bad Request
Unauthorized
Internal Server Error
POST /backend/api/vendor-price-group HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 266
"priceGroupName='text'&description='text'&isDefault=1&status=1&buyerIds='text'&deleteBuyerIds='text'&buyerGroupIds='text'&deleteBuyerGroupIds='text'&createProductDetails='text'&createPriceGroupSchedule='text'&deleteProductGroupDetailIds='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Created Seller Price Group..</message>
</object>
Fetch details of a product based on its SKU.
The SKU of the product
Successfully retrieved SKU details.
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-product/sku/{skuId} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got Sku detail..!</message>
</object>
Retrieve the list of vendor customer groups.
The number of records to retrieve.
The number of records to skip.
Search keyword to filter the customer group list.
Successfully retrieved the customer group list.
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-customer-group HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got customer list</message>
</object>
Retrieve the list of customers under a vendor customer group.
The number of records to retrieve.
The number of records to skip.
Search keyword to filter the customer list.
Successfully retrieved the customer list.
Bad Request
Unauthorized
Internal Server Error
GET /backend/api/vendor-customer-group/customer/list HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got customer list</message>
</object>
Updates an existing seller price group with new details, schedules, and settings.
The ID of the price group to be updated
Name of the price group
Description of the price group
Indicates whether this is the default price group (0 or 1)
Status of the price group (1 for active, 0 for inactive)
Comma-separated list of buyer IDs to be added
Comma-separated list of buyer IDs to be removed
Comma-separated list of buyer group IDs to be added
Comma-separated list of buyer group IDs to be removed
JSON string of product details to be created
JSON string of price group schedules to be created
Comma-separated list of product group detail IDs to be removed
Successfully updated the seller price group.
Bad Request
Unauthorized
Internal Server Error
PUT /backend/api/vendor-price-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 266
"priceGroupName='text'&description='text'&isDefault=1&status=1&buyerIds='text'&deleteBuyerIds='text'&buyerGroupIds='text'&deleteBuyerGroupIds='text'&createProductDetails='text'&createPriceGroupSchedule='text'&deleteProductGroupDetailIds='text'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Created Seller Price Group..</message>
</object>
Deletes a specific seller price group based on the given ID.
The ID of the price group to be deleted
Successfully deleted the seller price group.
Bad Request
Unauthorized
Internal Server Error
DELETE /backend/api/vendor-price-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully Deleted Seller Price Group..</message>
</object>
Last updated