> ## Documentation Index
> Fetch the complete documentation index at: https://v1-learn.neoartd.my.id/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Pelanggan



## OpenAPI

````yaml api/pelanggan.json delete /pelanggan/{id}
openapi: 3.0.1
info:
  title: Pelanggan API
  description: An API for Pelanggan documentation management and resource access.
  version: 1.0.0
servers:
  - url: https://blessed-toad-definitely.ngrok-free.app/api
security: []
paths:
  /pelanggan/{id}:
    delete:
      summary: Delete Pelanggan
      operationId: deletePelanggan
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            description: Unique identifier for the pelanggan
            example: 1
      responses:
        '200':
          description: Pelanggan deleted successfully

````