Spurtcommerce
DocumentAPI ReferenceAdd-ons
API Reference
API Reference
  • About Spurtcommerce APIs
  • Spurtcommerce
    • Admin API
      • Admin
        • Authentication
        • My Profile
        • Support
      • Buyers
        • Manage Buyer
      • Chat
      • CMS
        • Manage Banner
        • Manage Blogs
        • Manage Pages
        • Manage SEO
      • Dashboard
      • Marketing
        • Manage Cross Selling
          • Related Products
        • Manage Promotions
          • Coupon
      • Marketplace
        • Manage Products
        • Manage Sales
        • Manage Settlements
        • Product Configuration
        • Reports
      • Sellers
        • Seller
        • Seller Group
        • Seller KYC Request
      • Settings
        • Add-ons
        • Add-ons Product Attributes
        • Localization
        • Order Fulfilment Status
        • Personalise
        • Site Settings
        • Store Settings
        • System
        • User and Permission
        • Support-Category
    • Store API
      • Account Settings
        • Customer
        • My Order
        • My Quotation
        • My Wishlist
        • Profile
        • Support
      • Checkouts
      • Store
        • Admin Contact
        • Categories
        • Home
        • Product Detail Page
    • Vendor API
      • Page 1
      • Catalogue
        • Bulk Product Imports
          • Custom
          • Standard
        • Common Product
        • Data Export
        • Pricing
        • Product Localisation
        • Product List
        • Product Variants
        • Related Products
      • CRM
        • Customer
        • Customer Group
        • Question and Answer
        • Rating and Review
      • Dashboard
      • Marketing
      • Payments
        • Archeived Payments
        • Earnings
        • Settlements
      • Profile
        • Account Settings
          • My Business
          • My KYC
          • My Profile
          • My Shop
          • Personalised Setting
        • Chat
        • Vendor
        • Support
      • Reports
      • Sales
        • Archeive Orders
        • Back Orders
        • Failed Orders
        • Orders
        • Quotation Request
        • Stock Update
        • Variant Stock Update
      • Supplier
        • Contact
        • Supplier
Powered by GitBook
On this page
  1. Spurtcommerce
  2. Admin API
  3. Sellers

Seller Group

PreviousSellerNextSeller KYC Request

Last updated 4 months ago

Get seller group count

get

Retrieves the count of all seller groups

Responses
200
Successfully retrieved the seller group count
400
Invalid request
get
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>

Get vendor category list

get

Retrieves the list of vendor categories with optional filters

Query parameters
limitintegerOptional

Number of categories to return

offsetintegerOptional

The offset for pagination

countintegerOptional

Whether to return the count of categories

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200
Successfully retrieved vendor category list
400
Invalid request
get
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>

Get vendor group details

get

Retrieves the details of a specific vendor group by its ID

Path parameters
idintegerRequired

ID of the vendor group

Query parameters
idintegerRequired

ID of the vendor group

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200
Successfully retrieved vendor group details
400
Invalid request or vendor group not found
get
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>

Delete vendor group

delete

Deletes a specific vendor group identified by its ID

Path parameters
idintegerRequired

ID of the vendor group to delete

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Responses
200
Successfully deleted vendor group
400
Invalid request or vendor group not found
delete
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>
  • GETGet seller group count
  • GETGet vendor category list
  • GETGet vendor group details
  • PUTUpdate vendor group
  • DELETEDelete vendor group

Update vendor group

put

Updates the details of a specific vendor group by its ID

Path parameters
idintegerRequired

ID of the vendor group

Header parameters
AuthorizationstringRequired

Bearer token for authentication.

Body
namestringOptionalExample: test
commissionstringOptionalExample: 3.00
categoryIdsinteger[]OptionalExample: [1424]
statusintegerOptionalExample: 1
groupIdstringOptionalExample: 39
Responses
200
Successfully updated vendor group
400
Invalid request or vendor group not found
put
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>