---
title: "AppointmentInput"
url: "https://real-estate-agency.apim.eu/apis/viewing-appointments/versions/70b37971-1301-4569-bd6c-e68e8b19e7e2/schemas/AppointmentInput"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/viewing-appointments/versions/70b37971-1301-4569-bd6c-e68e8b19e7e2.md

# AppointmentInput

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Viewing Appointments
  version: 1.0.0
servers:
  - url: https://api.realestateagency.example/v1
    description: Production
  - url: https://sandbox.api.realestateagency.example/v1
    description: Sandbox
components:
  schemas:
    AppointmentType:
      type: string
      enum:
        - individual
        - group
        - virtual
      example: individual
    AppointmentInput:
      type: object
      required:
        - property_id
        - type
        - start
      properties:
        property_id:
          type: string
          example: prop_8f2c1a
        type:
          $ref: "#/components/schemas/AppointmentType"
        start:
          type: string
          format: date-time
          example: 2026-09-03T16:00:00+02:00
        duration_minutes:
          type: integer
          minimum: 10
          maximum: 240
          default: 30
        slots:
          type: integer
          minimum: 1
          description: "Only evaluated when `type: group`."
          example: 12
        meeting_point:
          type: string
          maxLength: 200
          example: In front of the main entrance, 148 Elm Street
        note:
          type: string
          maxLength: 500
          example: Please bring photo ID; the unit is currently occupied.
```
