---
title: "List confirmations for a session"
url: "https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765/operations/listConfirmations"
---

> Full API specification: https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765.md

# List confirmations for a session

`GET` `/sessions/{sessionId}/confirmations`

Operation ID: `listConfirmations`

## Path parameters

- `sessionId` (string, required)

## Responses

- `200` - Attendee list

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Evaluation Sessions
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
paths:
  /sessions/{sessionId}/confirmations:
    parameters:
      - name: sessionId
        in: path
        required: true
        schema:
          type: string
          example: sess_9a44
    get:
      tags:
        - Sessions
      summary: List confirmations for a session
      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
        session_id:
          type: string
          example: sess_9a44
        requester_id:
          type: string
          example: req_71ab
        state:
          type: string
          enum:
            - confirmed
            - waitlisted
            - cancelled
            - attended
            - no_show
        attendees:
          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 Nexora AI 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`.
```
