Update Course Category
Admins can update an existing Course Category to refine its details, change its image, or adjust its display order.
This helps keep the course catalog organized and up to date.
Update a Category (Quick Steps)
- Go to Backoffice → Course Management → Categories.
- Find the category you want to update.
- Click Edit.
- Modify the required fields.
- Save to apply changes.
Editable Fields
| Field | Type | Notes |
|---|---|---|
| Image | Upload | Replace the current category image or leave unchanged. |
| Status | Enum | Toggle between Active (visible) and Inactive (hidden). |
| Name | String | Update the category title. Keep it short and clear. |
| Description | Text | Revise or expand the category description. |
| Sort Order | Number | Adjust the display order. Lower numbers appear first. |
Example Update (JSON)
{
"categoryId": "cat-101",
"name": "Programming & Development",
"status": "active",
"image": "programming-updated.png",
"description": "Updated: Courses for Python, JavaScript, Java, and full-stack development.",
"sortOrder": 2
}