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

# Delete movement

> Delete a specific nomenclature movement by its ID.



## OpenAPI

````yaml delete /v1/nomenclature/movements/{id}
openapi: 3.0.0
info:
  title: Nomenclature Movements API
  version: 1.0.0
servers:
  - url: https://api.nomi.tools
    description: Main API server
security:
  - basicAuth: []
paths:
  /v1/nomenclature/movements/{id}:
    delete:
      tags:
        - Nomenclature / Movements
      summary: Delete movement
      description: Delete a specific nomenclature movement by its ID.
      operationId: deleteMovement
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Movement deleted successfully
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >
        Use HTTP Basic Authentication.  Provide your email as login and PPT
        token as the password.

````