The Type API allows you to manage item types for your DayZ server instances. Types define how items spawn in the game world, including their quantity, lifetime, and other properties.
Note: All API requests require authentication. See the Authentication page for details.
Retrieve a paginated list of types for a specific instance.
GET /api/instance/{instance_sid}/type
Parameter | Type | Description |
---|---|---|
instance_sid
|
string | The SID of the instance |
Retrieve details of a specific type.
GET /api/instance/{instance_sid}/type/{type_sid}
Retrieve a paginated list of types for a specific category.
GET /api/instance/{instance_sid}/type/category/{category_sid}
Retrieve a paginated list of favorite types.
GET /api/instance/{instance_sid}/type/favorite
Update an existing type.
PATCH /api/instance/{instance_sid}/type/{type_sid}
Delete a type.
DELETE /api/instance/{instance_sid}/type/{type_sid}