> ## Documentation Index
> Fetch the complete documentation index at: https://docs.theymes.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete player

> Immediately and permanently delete a player's data. Unlike schedule-deletion, there is no 24-hour delay and the deletion cannot be cancelled. This endpoint is only available to companies that have been explicitly allowlisted; contact Theymes to request access.



## OpenAPI

````yaml https://api.theymes.com/openapi delete /player
openapi: 3.1.0
info:
  title: Theymes API
  version: 1.0.0
  description: >-
    Theymes API allows you to interact with the Theymes platform.



    Most endpoints require an API key for authentication. You can generate an
    API key in the Theymes dashboard.



    The API key should be included in the Authorization header
    (```Authorization: Bearer <YOUR_KEY>```).



    The public support link endpoints do not require authentication and are
    grouped separately below.
servers: []
security: []
tags:
  - name: Authenticated endpoints (API key)
    description: Endpoints that require an API key in the Authorization header.
  - name: Public support links (no authentication)
    description: >-
      Endpoints for creating web support sessions and links. These require no
      authentication and are identified by a game environment token.
paths:
  /player:
    delete:
      tags:
        - Authenticated endpoints (API key)
      description: >-
        Immediately and permanently delete a player's data. Unlike
        schedule-deletion, there is no 24-hour delay and the deletion cannot be
        cancelled. This endpoint is only available to companies that have been
        explicitly allowlisted; contact Theymes to request access.
      operationId: deletePlayer
      parameters:
        - schema:
            type: string
            description: Bearer token API key
          required: true
          description: Bearer token API key
          name: Authorization
          in: header
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                theymesPlayerId:
                  type: string
                  format: uuid
                  description: The Theymes Player ID, can be found with the ticket API.
              required:
                - theymesPlayerId
      responses:
        '200':
          description: Player deletion completed
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                required:
                  - success

````