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

# Klant ophalen

> Haal de details op van een specifieke klant via hun unieke ID.



## OpenAPI

````yaml openapi.json get /get-customer/{id}
openapi: 3.0.0
info:
  title: ClientBox API
  version: 1.1.0
  description: >-
    Welkom bij de ClientBox API documentatie.


    Gebruik deze API om klanten te beheren, facturen te sturen en workflows te
    automatiseren vanuit je eigen applicatie.


    ### Authenticatie

    Alle endpoints vereisen een `Bearer Token`. Voeg deze toe aan de header:

    `Authorization: Bearer JOUW_API_KEY`
  contact:
    name: ClientBox Support
    email: support@clientbox.co
servers:
  - url: https://api.clientbox.co/api/1.1/wf
    description: Productie Server
security:
  - BearerAuth: []
tags:
  - name: Customers
    description: Beheer je klantenbestand en contactgegevens.
  - name: Invoices
    description: Maak en verstuur facturen direct naar klanten.
paths:
  /get-customer/{id}:
    get:
      tags:
        - Customers
      summary: Klant ophalen
      description: Haal de details op van een specifieke klant via hun unieke ID.
      operationId: getCustomer
      parameters:
        - name: id
          in: path
          required: true
          description: Het unieke ID van de klant (bijv. `cust_123`).
          schema:
            type: string
      responses:
        '200':
          description: Klant gegevens.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Customer'
        '404':
          description: Klant niet gevonden.
components:
  schemas:
    Customer:
      type: object
      properties:
        id:
          type: string
          example: cust_12345
        name:
          type: string
          example: Jan Jansen
        email:
          type: string
          example: jan@bedrijf.nl
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````