---
title: "SessionInput"
url: "https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765/schemas/SessionInput"
---

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

# SessionInput

## 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
components:
  schemas:
    SessionType:
      type: string
      enum:
        - individual
        - group
        - virtual
      example: individual
    SessionInput:
      type: object
      required:
        - agent_id
        - type
        - start
      properties:
        agent_id:
          type: string
          example: agt_8f2c1a
        type:
          $ref: "#/components/schemas/SessionType"
        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
        location_or_link:
          type: string
          maxLength: 200
          example: https://meet.nexora.example/eval-8f2c1a
        note:
          type: string
          maxLength: 500
          example: Please come with concrete workflows you want the agent to try.
```
