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

# GET /appointments/{appointmentId}/slots/{slotId}/attendees

> Get attendees for a specific appointment slot



## OpenAPI

````yaml /api/openapi/admin-api.json get /appointments/{appointmentId}/slots/{slotId}/attendees
openapi: 3.1.0
info:
  description: Admin API for Fanfare
  title: Fanfare Admin API
  version: 1.0.0
servers:
  - description: Production
    url: https://admin.fanfare.io/api
  - description: Local development
    url: http://localhost:4800
security:
  - SecretKeyAuth: []
paths:
  /appointments/{appointmentId}/slots/{slotId}/attendees:
    get:
      tags:
        - Distributions
      description: Get attendees for a specific appointment slot
      operationId: getAppointmentsByAppointmentIdSlotsBySlotIdAttendees
      parameters:
        - in: query
          name: page
          required: false
          schema:
            type: string
        - in: query
          name: limit
          required: false
          schema:
            type: string
        - in: path
          name: appointmentId
          required: true
          schema:
            type: string
        - in: path
          name: slotId
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  appointmentId:
                    format: uuid
                    type: string
                  attendees:
                    items:
                      properties:
                        checkedInAt:
                          anyOf:
                            - format: date-time
                              type: string
                            - type: 'null'
                        consumerId:
                          format: uuid
                          type: string
                        email:
                          anyOf:
                            - type: string
                            - type: 'null'
                        enteredAt:
                          anyOf:
                            - format: date-time
                              type: string
                            - type: 'null'
                        id:
                          format: uuid
                          type: string
                        name:
                          anyOf:
                            - type: string
                            - type: 'null'
                        phone:
                          anyOf:
                            - type: string
                            - type: 'null'
                        status:
                          type: string
                      required:
                        - id
                        - consumerId
                        - status
                      type: object
                    type: array
                  pagination:
                    properties:
                      limit:
                        type: number
                      page:
                        type: number
                      total:
                        type: number
                      totalPages:
                        type: number
                    required:
                      - page
                      - limit
                      - total
                      - totalPages
                    type: object
                  slotId:
                    type: string
                required:
                  - slotId
                  - appointmentId
                  - attendees
                  - pagination
                type: object
          description: Slot attendees retrieved successfully
        '400':
          content:
            application/json:
              schema:
                properties:
                  error:
                    const: validation_error
                  issues:
                    items:
                      properties:
                        expected:
                          type: string
                        kind:
                          type: string
                        message:
                          type: string
                        path:
                          items:
                            properties:
                              input: {}
                              key:
                                type: string
                              origin:
                                type: string
                              type:
                                type: string
                            required:
                              - type
                              - origin
                              - input
                              - key
                            type: object
                          type: array
                        received:
                          type: string
                        type:
                          type: string
                      required:
                        - kind
                        - type
                        - expected
                        - received
                        - message
                        - path
                      type: object
                    type: array
                required:
                  - error
                  - issues
                type: object
          description: Bad Request - Invalid input schema
        '401':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Unauthorized - Authentication required
        '403':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Forbidden - User must be authenticated
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Internal server error
components:
  securitySchemes:
    SecretKeyAuth:
      description: Fanfare secret key. Keep secret credentials on your server.
      scheme: bearer
      type: http

````