Categories
Category management for zones
Last updated
Category management for zones
Last updated
GET /api/categories HTTP/1.1
Host:
Accept: */*
[
{
"id": 1,
"name": "text",
"description": "text",
"color": "text",
"createdAt": "2025-12-26T04:56:28.538Z"
}
]POST /api/categories HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"name": "text",
"description": "text",
"color": "#3B82F6"
}{
"id": 1,
"name": "text",
"description": "text",
"color": "text",
"createdAt": "2025-12-26T04:56:28.538Z"
}PUT /api/categories HTTP/1.1
Host:
Content-Type: application/json
Accept: */*
Content-Length: 58
{
"id": 1,
"name": "text",
"description": "text",
"color": "text"
}{
"id": 1,
"name": "text",
"description": "text",
"color": "text",
"createdAt": "2025-12-26T04:56:28.538Z"
}DELETE /api/categories?id=text HTTP/1.1
Host:
Accept: */*