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

# Abrufen Domain

> Gibt kundenseitig Domain Detail.

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.de.json GET /v1/public/accounts/{account_id}/domains/{domain}
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/domains/{domain}:
    get:
      tags:
        - public-accounts
        - public-domains
      summary: Abrufen Domain
      description: Gibt kundenseitig Domain Detail.
      operationId: get_public_domain_v1_public_accounts__account_id__domains__domain__get
      parameters:
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
        - in: path
          name: domain
          required: true
          schema:
            title: Domain
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DomainDetailResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validierungsfehler
      security:
        - PublicBearerAuth: []
components:
  schemas:
    DomainDetailResponse:
      properties:
        auto_renew:
          default: false
          description: Ob die automatische Verlängerung der Domain aktiviert ist
          title: Automatische Verlängerung
          type: boolean
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          description: Zeitstempel der Domänenerstellung
          title: Erstellt At
        dedicated_ip_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          description: Zugewiesener dedizierter IP UUID, falls vorhanden
          title: Dediziert IP Id
        dns_records:
          description: DNS-Einträge für die Domäne
          items:
            $ref: '#/components/schemas/DomainDnsRecordResponse'
          title: DNS Eintraege
          type: array
        id:
          description: Domäne UUID
          format: uuid
          title: ID
          type: string
        inbound_tenant_external_id:
          anyOf:
            - type: string
            - type: 'null'
          description: Externe Anbieter-ID für den eingehenden Mandanten
          title: Inbound Tenant External ID
        inbound_tenant_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          description: Eingehender Mandant UUID, falls zugewiesen
          title: Inbound Tenant ID
        inbound_tenant_name:
          anyOf:
            - type: string
            - type: 'null'
          description: Anzeigename des eingehenden Mandanten, falls zugewiesen
          title: Name des eingehenden Mandanten
        inbound_tenant_type:
          anyOf:
            - type: string
            - type: 'null'
          description: Eingehender Mandantentyp, falls zugewiesen
          title: Inbound Tenant Typ
        mailboxes:
          description: Postfächer in der Domäne
          items:
            $ref: '#/components/schemas/DomainMailboxSummary'
          title: Postfächer
          type: array
        name:
          description: Domainname
          title: Name
          type: string
        outbound_routing_ready:
          description: Ob das Outbound-Routing bereit ist
          title: Ausgangsrouting bereit
          type: boolean
        redirect_mode:
          anyOf:
            - enum:
                - '301'
                - '302'
                - iframe
              type: string
            - type: 'null'
          description: Konfigurierter Umleitungsmodus, falls vorhanden
          title: Redirect Modus
        redirect_url:
          anyOf:
            - type: string
            - type: 'null'
          description: Konfigurierte Weiterleitungs-URL, falls vorhanden
          title: Redirect URL
        status:
          description: Status des Domänenlebenszyklus
          title: Status
          type: string
        tags:
          description: An die Domain angehängte Tags
          items:
            $ref: '#/components/schemas/DomainTagResponse'
          title: Schlagworte
          type: array
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          description: Zeitstempel der letzten Domain-Aktualisierung
          title: Aktualisiert am
        workspace_id:
          description: Arbeitsbereich UUID, der die Domäne enthält
          format: uuid
          title: Arbeitsbereichs-ID
          type: string
      required:
        - id
        - name
        - status
        - workspace_id
        - outbound_routing_ready
      title: DomainDetailResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    DomainDnsRecordResponse:
      description: DNS record embedded in Domain Details.
      properties:
        id:
          description: DNS-Datensatzkennung
          title: ID
          type: integer
        is_system_managed:
          default: false
          description: Ob der Datensatz von HybridBox verwaltet wird
          title: Wird vom System verwaltet
          type: boolean
        name:
          description: DNS-Datensatzname
          title: Name
          type: string
        priority:
          anyOf:
            - type: integer
            - type: 'null'
          description: DNS Datensatzpriorität, falls zutreffend
          title: Priorität
        ttl:
          description: DNS Datensatz TTL in Sekunden
          title: TTL
          type: integer
        type:
          description: DNS-Datensatztyp
          title: Type
          type: string
        value:
          description: DNS-Datensatzwert
          title: Wert
          type: string
      required:
        - id
        - type
        - name
        - value
        - ttl
      title: DomainDnsRecordResponse
      type: object
    DomainMailboxSummary:
      description: Postfach Zusammenfassung embedded in Domain Details.
      properties:
        active:
          description: Ob das Postfach aktiv ist
          title: Aktiv
          type: boolean
        email:
          description: E-Mail-Adresse des primären Postfachs
          title: E-Mail
          type: string
        first_name:
          description: Vorname des Postfachbenutzers
          title: Vorname
          type: string
        id:
          description: Postfach UUID
          format: uuid
          title: ID
          type: string
        last_name:
          description: Nachname des Postfachbenutzers
          title: Nachname
          type: string
      required:
        - id
        - email
        - first_name
        - last_name
        - active
      title: DomainMailboxSummary
      type: object
    DomainTagResponse:
      description: Tag attached to a Domain.
      properties:
        id:
          description: Markieren Sie UUID
          format: uuid
          title: ID
          type: string
        name:
          description: Tag-Anzeigename
          title: Name
          type: string
      required:
        - id
        - name
      title: DomainTagResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Standort
          type: array
        msg:
          title: Nachricht
          type: string
        type:
          title: Fehler Typ
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    PublicBearerAuth:
      bearerFormat: JWT or Hybridbox Service account token
      description: >-
        Public API bearer credential sent as `Authorization: Bearer <token>`.
        Use either an OAuth access token or a Hybridbox Service account token.
      scheme: bearer
      type: http

````