Manage item categories for your DayZ server instances. Categories help organize items into logical groups like weapons, clothing, food, and tools.
Authentication required: All endpoints require a valid Bearer token. See Authentication for details.
Retrieve a paginated list of categories for a specific instance.
GET /api/instance/{instance_sid}/category
instance_sid
The SID of the instance (URL parameter)
page
integer
Page number for pagination. Defaults to 1.
like
string
Filter categories by name using partial match.
{
"current_page": 1,
"data": [
{ "sid": "abc123", "name": "Weapons" },
{ "sid": "def456", "name": "Clothing" }
],
"per_page": 30,
"total": 45
}
Retrieve details of a specific category.
GET /api/instance/{instance_sid}/category/{category_sid}
Create a new category for an instance.
POST /api/instance/{instance_sid}/category
name
Name of the category (e.g., "Weapons", "Food", "Tools")
PATCH /api/instance/{instance_sid}/category/{category_sid}
Update an existing category name.
DELETE /api/instance/{instance_sid}/category/{category_sid}
Permanently delete a category. Items in this category may become uncategorized.