---
title: "Bulk Delete Games"
method: DELETE
path: "/api/v1/games/bulk-delete"
tags: ["Games"]
---

# Bulk Delete Games

`DELETE /api/v1/games/bulk-delete`

Delete multiple game records in a single request.

Args:
    request: Contains list of game_ids to delete (max 1000 per request)

Returns:
    GameBulkDeleteResponse with success status and deletion count

## Headers

- `x-api-key` string, nullable
- `League` string, nullable

## Request body

- GameBulkDeleteRequest — Request schema for bulk deleting games.
  - `game_ids` string[], required — List of game IDs to delete (must be valid UUIDs)

## Response `200`

Successful Response

- GameBulkDeleteResponse — Response schema for bulk game delete operation.
  - `success` boolean, required — Whether the operation was successful
  - `message` string, required — Status message
  - `deleted_count` integer, required — Number of records deleted
  - `requested_count` integer, required — Number of game IDs requested for deletion

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/preciser/apis/preciser-data-management-api.md) · [All operations](https://skmtc.net/preciser/apis/preciser-data-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/preciser/preciser-data-management-api/versions/c5f6b8674011/schema)
