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

# Reschedule Calendar Entry

> Move a calendar entry to a new date/time.



## OpenAPI

````yaml /openapi.json patch /api/v1/teams/{team_id}/calendar/{entry_id}/reschedule
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/calendar/{entry_id}/reschedule:
    patch:
      tags:
        - Teams
      summary: Reschedule Calendar Entry
      description: Move a calendar entry to a new date/time.
      operationId: >-
        reschedule_calendar_entry_api_v1_teams__team_id__calendar__entry_id__reschedule_patch
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
        - name: entry_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Entry Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RescheduleEntryRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CalendarEntry'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RescheduleEntryRequest:
      properties:
        scheduled_for:
          type: string
          format: date-time
          title: Scheduled For
      type: object
      required:
        - scheduled_for
      title: RescheduleEntryRequest
    CalendarEntry:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        title:
          type: string
          title: Title
        task_type:
          type: string
          title: Task Type
        platform:
          anyOf:
            - type: string
            - type: 'null'
          title: Platform
        status:
          type: string
          title: Status
        scheduled_for:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Scheduled For
        assigned_member:
          anyOf:
            - $ref: '#/components/schemas/TeamMemberResponse'
            - type: 'null'
        published_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Published At
      type: object
      required:
        - id
        - title
        - task_type
        - platform
        - status
        - scheduled_for
        - assigned_member
      title: CalendarEntry
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TeamMemberResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        role:
          type: string
          title: Role
        agent_slug:
          type: string
          title: Agent Slug
        display_name:
          type: string
          title: Display Name
        capabilities:
          items:
            type: string
          type: array
          title: Capabilities
        hired_agent_id:
          type: string
          format: uuid
          title: Hired Agent Id
        current_activity:
          additionalProperties: true
          type: object
          title: Current Activity
          default: {}
        persona_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Persona Name
          description: Derive persona_name from the hired_agent relationship.
          readOnly: true
        agent_classes:
          items:
            type: string
          type: array
          title: Agent Classes
          description: >-
            AgentClass taxonomy (analyst / creator / platform_specialist /

            orchestrator / evaluator) derived from the canonical class map.


            Surfaced in the API response so the frontend Office Space canvas

            can enforce the rule: Platform cards attach only to members

            classed ``platform_specialist``. Looking up via
            ``hired_agent.agent_type``

            rather than ``agent_slug`` because team-member slug can differ

            from the underlying agent_type (e.g. slug "blog-publisher" →

            agent_type "blog-specialist").
          readOnly: true
      type: object
      required:
        - id
        - role
        - agent_slug
        - display_name
        - capabilities
        - hired_agent_id
        - persona_name
        - agent_classes
      title: TeamMemberResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````