---
title: "Veroeffentlichung"
url: "https://maklerportal.apim.eu/apis/expose-erstellen/versions/68a05fe4-408a-4a77-bd68-eebadc995624/schemas/Veroeffentlichung"
---

> Full API specification: https://maklerportal.apim.eu/apis/expose-erstellen/versions/68a05fe4-408a-4a77-bd68-eebadc995624.md

# Veroeffentlichung

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Exposé erstellen
  version: 1.0.0
servers:
  - url: https://api.maklerportal.example/v1
    description: Produktion
  - url: https://sandbox.api.maklerportal.example/v1
    description: Sandbox – Bestand wird nächtlich zurückgesetzt
components:
  schemas:
    ExposeStatus:
      type: string
      description: Lebenszyklus eines Exposés.
      enum:
        - in_arbeit
        - fertig
        - veroeffentlicht
        - zurueckgezogen
        - fehlgeschlagen
      example: fertig
    Kanal:
      type: string
      description: Veröffentlichungskanal.
      enum:
        - portal
        - website
        - newsletter
        - schaufenster
    Veroeffentlichung:
      type: object
      properties:
        expose_id:
          type: string
          example: exp_4d9b2e
        status:
          $ref: "#/components/schemas/ExposeStatus"
        kanaele:
          type: array
          items:
            type: object
            properties:
              kanal:
                $ref: "#/components/schemas/Kanal"
              zustand:
                type: string
                enum:
                  - live
                  - geplant
                  - fehlgeschlagen
              url:
                type: string
                format: uri
        veroeffentlicht_am:
          type: string
          format: date-time
          example: 2026-08-20T09:44:03Z
```
