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

# Delete station

> Deletes the station and everything recorded under it: EVSEs, connectors, sessions and logs.



## OpenAPI

````yaml /openapi.json delete /charging-stations/{id}
openapi: 3.1.0
info:
  title: CSMS API
  description: Backend API documentation
  version: 0.0.0
servers: []
security: []
paths:
  /charging-stations/{id}:
    delete:
      tags:
        - charging stations
      summary: Delete station
      description: >-
        Deletes the station and everything recorded under it: EVSEs, connectors,
        sessions and logs.
      operationId: deleteChargingStationsById
      parameters:
        - schema:
            type: string
          in: path
          name: id
          required: true
      responses:
        '204':
          description: No content
        '404':
          description: Charging station not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    const: 404
                  message:
                    type: string
                    const: Charging station not found
                  type:
                    type: string
                    const: CHARGING_STATION_NOT_FOUND
                  attributes:
                    type: object
                    propertyNames:
                      type: string
                    additionalProperties:
                      type: string
                required:
                  - status
                  - message
                  - type

````