---
title: "Reschedule or update a session"
url: "https://nexora.apim.eu/apis/evaluation-sessions/versions/b3c12e5c-39d5-45ea-824c-783ae0f56765/operations/rescheduleSession"
---

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

# Reschedule or update a session

`PATCH` `/sessions/{sessionId}`

Operation ID: `rescheduleSession`

When the start time changes, all confirmed attendees are notified automatically.

## Path parameters

- `sessionId` (string, required)

## Request body (required)

Content types: `application/json`

## Responses

- `200` - Updated
- `404` - Record not found

## 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}:
    parameters:
      - name: sessionId
        in: path
        required: true
        schema:
          type: string
          example: sess_9a44
    patch:
      tags:
        - Sessions
      summary: Reschedule or update a session
      description: When the start time changes, all confirmed attendees are notified
        automatically.
      operationId: rescheduleSession
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: "#/components/schemas/SessionInput"
            example:
              start: 2026-09-03T17:30:00+02:00
      responses:
        "200":
          description: Updated
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/Session"
        "404":
          $ref: "#/components/responses/NotFound"
security:
  - apiKey: []
components:
  schemas:
    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.
    Session:
      allOf:
        - $ref: "#/components/schemas/SessionInput"
        - type: object
          properties:
            id:
              type: string
              example: sess_9a44
            status:
              $ref: "#/components/schemas/SessionStatus"
            confirmations_count:
              type: integer
              example: 8
            waitlist_count:
              type: integer
              example: 2
            created_at:
              type: string
              format: date-time
              example: 2026-08-20T11:02:10Z
    SessionType:
      type: string
      enum:
        - individual
        - group
        - virtual
      example: individual
    SessionStatus:
      type: string
      enum:
        - scheduled
        - confirmed
        - completed
        - cancelled
      example: confirmed
    Error:
      type: object
      description: Uniform error format across all Nexora AI APIs.
      required:
        - code
        - message
      properties:
        code:
          type: string
          example: validation_failed
        message:
          type: string
          example: The session start time is missing.
        details:
          type: array
          items:
            $ref: "#/components/schemas/ErrorDetail"
    ErrorDetail:
      type: object
      properties:
        field:
          type: string
          example: start
        reason:
          type: string
          example: missing
  responses:
    NotFound:
      description: Record not found
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/Error"
  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`.
```
