Seller Group
Retrieves the count of all seller groups
Successfully retrieved the seller group count
Invalid request
GET /backend/api/vendor-group/vendor-group-count HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got the seller group count</message>
</object>
Retrieves the list of vendor categories with optional filters
Number of categories to return
The offset for pagination
Whether to return the count of categories
Bearer token for authentication.
Successfully retrieved vendor category list
Invalid request
GET /backend/api/category 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>
Retrieves the details of a specific vendor group by its ID
ID of the vendor group
ID of the vendor group
Bearer token for authentication.
Successfully retrieved vendor group details
Invalid request or vendor group not found
GET /backend/api/vendor-group/vendor-group-details/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Successfully got seller group details</message>
</object>
Updates the details of a specific vendor group by its ID
ID of the vendor group
Bearer token for authentication.
test
3.00
[1424]
1
39
Successfully updated vendor group
Invalid request or vendor group not found
PUT /backend/api/vendor-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 82
"name='test'&commission='3.00'&categoryIds=[1424]&status=1&groupId='39'"
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Seller Group updated successfully</message>
</object>
Deletes a specific vendor group identified by its ID
ID of the vendor group to delete
Bearer token for authentication.
Successfully deleted vendor group
Invalid request or vendor group not found
DELETE /backend/api/vendor-group/{id} HTTP/1.1
Host: 139.59.67.17
Authorization: text
Accept: */*
<?xml version="1.0"?>
<object>
<status>1</status>
<message>Seller group deleted successfully</message>
</object>
Last updated