---
title: "Interessent"
url: "https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f/schemas/Interessent"
---

> Full API specification: https://maklerportal.apim.eu/apis/interessenten/versions/b41f900a-058f-49ba-a5a3-a3864c83629f.md

# Interessent

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Interessenten & Leads
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox
components:
  schemas:
    InteressentAnlegen:
      type: object
      required:
        - nachname
        - email
        - einwilligung
      properties:
        vorname:
          type: string
          example: Anna
        nachname:
          type: string
          example: Bergmann
        email:
          type: string
          format: email
          example: a.bergmann@example.org
        telefon:
          type: string
          example: +49 40 1234567
        einwilligung:
          $ref: "#/components/schemas/Einwilligung"
        suchprofil:
          $ref: "#/components/schemas/Suchprofil"
    Einwilligung:
      type: object
      description: Nachweis der datenschutzrechtlichen Einwilligung.
      required:
        - zweck
        - erteilt_am
      properties:
        zweck:
          type: string
          enum:
            - objektvermittlung
            - newsletter
        erteilt_am:
          type: string
          format: date-time
          example: 2026-08-18T10:22:00Z
        widerrufen_am:
          type: string
          format: date-time
          nullable: true
          example: null
    Suchprofil:
      type: object
      properties:
        typ:
          type: array
          items:
            type: string
            enum:
              - wohnung
              - haus
              - grundstueck
              - gewerbe
        orte:
          type: array
          items:
            type: string
            example: Hamburg
        zimmer_min:
          type: number
          format: float
          example: 3
        wohnflaeche_min_qm:
          type: number
          format: float
          example: 75
        kaufpreis_max_eur:
          type: integer
          example: 700000
        kaltmiete_max_eur:
          type: integer
          example: 1600
        finanzierungsnachweis:
          type: boolean
          example: false
    Interessent:
      allOf:
        - $ref: "#/components/schemas/InteressentAnlegen"
        - type: object
          properties:
            id:
              type: string
              example: int_71ab
            aufbewahrung_bis:
              type: string
              format: date
              description: Automatisch gesetzte Löschfrist. Danach wird anonymisiert.
              example: 2027-02-18
            angelegt_am:
              type: string
              format: date-time
              example: 2026-08-18T10:22:04Z
```
