Complete 3-layer API flow for category management: hierarchical taxonomy for seller catalogs
View Postman DocumentationCreate a category with parent-child hierarchy, ordering, and images
POST /merchant/api/v1/domains/:domain_id/categories
POST /api/categories
6-Step Flow:
POST /api/categories
Catalogue Service · Core Microservices
List categories with tree structure, filters, and pagination
GET /merchant/api/v1/domains/:domain_id/categories
GET /api/categories
GET /api/categories?domain_id=:domain_id&tree=true
Catalogue Service · Core Microservices
Retrieve a specific category with metadata
GET /merchant/api/v1/domains/:domain_id/categories/:id
GET /api/categories/:id
GET /api/categories/:id
Catalogue Service · Core Microservices
Update name, position, visibility, and other fields
PATCH /merchant/api/v1/domains/:domain_id/categories/:id
PATCH /api/categories/:id
PATCH /api/categories/:id
Catalogue Service · Core Microservices
DELETE /api/cache/categories/:id
Caching Service · Shared Services
Soft-delete a category
DELETE /merchant/api/v1/domains/:domain_id/categories/:id
DELETE /api/categories/:id
DELETE /api/categories/:id
Catalogue Service · Core Microservices
DELETE /api/cache/categories/:id
Caching Service · Shared Services
This documentation represents the internal API flow between Seller API Gateway, Seller Catalog & Inventory Orchestration, and Core Microservices (Catalogue Service for categories, User Service for auth).