Wiki Navigation

Type API Endpoints

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.

List Types

Retrieve a paginated list of types for a specific instance.

Request

GET /api/instance/{instance_sid}/type

URL Parameters

Parameter Type Description
instance_sid string The SID of the instance

Get Type

Retrieve details of a specific type.

Request

GET /api/instance/{instance_sid}/type/{type_sid}

Get Types by Category

Retrieve a paginated list of types for a specific category.

Request

GET /api/instance/{instance_sid}/type/category/{category_sid}

Get Favorite Types

Retrieve a paginated list of favorite types.

Request

GET /api/instance/{instance_sid}/type/favorite

Update Type

Update an existing type.

Request

PATCH /api/instance/{instance_sid}/type/{type_sid}

Delete Type

Delete a type.

Request

DELETE /api/instance/{instance_sid}/type/{type_sid}