Product Category Endpoints
Manage product categories for e-commerce features.
Base Path
/api/product-category
Endpoints
List Categories
GET /api/product-category
Authorization: Bearer {token}
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
page | number | Page number |
limit | number | Items per page |
name | string | Filter by name |
Create Category
POST /api/product-category
Authorization: Bearer {token}
{
"name": "Electronics",
"description": "Electronic products and accessories",
"imageUrl": "https://example.com/electronics.png"
}
Update Category
PUT /api/product-category/:id
Authorization: Bearer {token}
Delete Category
DELETE /api/product-category/:id
Authorization: Bearer {token}
Category Translations
PUT /api/product-category/:id/translations
Authorization: Bearer {token}
{
"languageCode": "es",
"name": "Electrónica",
"description": "Productos electrónicos y accesorios"
}
Related Pages
- Product Endpoints — products API
- Products & Inventory — feature