> ## 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.

# Get Pelanggan List



## OpenAPI

````yaml api/pelanggan.json get /pelanggan
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:
    get:
      summary: Get Pelanggan List
      operationId: getPelanggan
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Pelanggan'
components:
  schemas:
    Pelanggan:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier for the pelanggan
        nama:
          type: string
          description: Name of the pelanggan
          example: John Doe
        alamatLengkap:
          type: string
          description: Address of the pelanggan
          example: Jakarta, Indonesia
        agama:
          type: string
          enum:
            - Islam
            - Kristen
            - Katolik
            - Hindu
            - Buddha
            - Konghucu
          description: Religion of the pelanggan
        tanggalLahir:
          type: string
          format: date
          description: Birthdate of the pelanggan
          example: '2000-01-01'
        nomorTelepon:
          type: string
          description: Phone number of the pelanggan
          example: '+6281234567890'

````