---
title: "List confirmations for an appointment"
url: "https://real-estate-agency.apim.eu/apis/viewing-appointments/versions/70b37971-1301-4569-bd6c-e68e8b19e7e2/operations/listConfirmations"
---

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

# List confirmations for an appointment

`GET` `/appointments/{appointmentId}/confirmations`

Operation ID: `listConfirmations`

## Path parameters

- `appointmentId` (string, required)

## Responses

- `200` - Attendee list

## 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
paths:
  /appointments/{appointmentId}/confirmations:
    parameters:
      - name: appointmentId
        in: path
        required: true
        schema:
          type: string
          example: appt_9a44
    get:
      tags:
        - Appointments
      summary: List confirmations for an appointment
      operationId: listConfirmations
      responses:
        "200":
          description: Attendee list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: "#/components/schemas/Confirmation"
                  open_slots:
                    type: integer
                    example: 4
security:
  - apiKey: []
components:
  schemas:
    Confirmation:
      type: object
      properties:
        id:
          type: string
          example: conf_1f7c
        appointment_id:
          type: string
          example: appt_9a44
        lead_id:
          type: string
          example: lead_71ab
        state:
          type: string
          enum:
            - confirmed
            - waitlisted
            - cancelled
            - attended
            - no_show
        guests:
          type: integer
          example: 1
        confirmed_at:
          type: string
          format: date-time
          example: 2026-08-21T09:14:00Z
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: |
        Every call carries an API key in the `apikey` header. You generate the
        key in the Real Estate portal under "My Apps"; it's shown exactly once.

        Each key has the scopes it's allowed to use attached to it. If one is
        missing, the API responds with `403` and `code: "scope_missing"`; the
        missing scope is in `details[].field`.
```
