Left Menu
Manage left menu (sidebar) items. Ability to create, view, and delete menu items.
Available Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /api/left-menus |
List left menu items |
| POST | /api/left-menus |
Create new menu item |
| DELETE | /api/left-menus/{type?} |
Delete menu item (by type) |
Example Request
curl -X GET "https://example.com/api/left-menus" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"records": []
}
Errors
| Code | Description |
|---|---|
| 401 | Invalid token |
| 403 | Access denied |
| 422 | Validation error |