Manage item classnames for your DayZ server instances. Classnames are the unique identifiers for items in the game, used throughout configuration files.
Authentication required: All endpoints require a valid Bearer token. See Authentication for details.
Retrieve a paginated list of classnames for a specific instance.
GET /api/instance/{instance_sid}/classname
instance_sid
The SID of the instance (URL parameter)
page
integer
Page number for pagination. Defaults to 1.
like
string
Filter classnames by name using partial match.
{
"current_page": 1,
"data": [
{
"sid": "abc123",
"mod_id": 1,
"category_id": 1,
"subcategory_id": 2,
"name": "AKM"
}
],
"per_page": 30,
"total": 300
}
Retrieve details of a specific classname.
GET /api/instance/{instance_sid}/classname/{classname_sid}
instance_sid
required
The SID of the instance
classname_sid
required
The SID of the classname
Create a new classname for an instance.
POST /api/instance/{instance_sid}/classname
name
The classname identifier
category_id
ID of the category
mod_id
integer
ID of the mod (optional)
subcategory_id
integer
ID of the subcategory (optional)
PATCH /api/instance/{instance_sid}/classname/{classname_sid}
Update an existing classname. Include only fields to change.
DELETE /api/instance/{instance_sid}/classname/{classname_sid}
Permanently delete a classname from the instance.