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

# Bulk handoff appointments

> Hands off multiple appointments from specified users within a time period to a target user.



## OpenAPI

````yaml /openapi.json post /v4/handoff/bulk
openapi: 3.0.0
info:
  title: meetergo Platform API
  description: >-
    Comprehensive scheduling API for creating users, managing availability,
    handling bookings, and connecting calendar providers. Enables seamless
    integration with external platforms and applications.
  version: 0.0.0
  contact: {}
  termsOfService: https://www.meetergo.com/tos/
servers: []
security: []
tags:
  - name: User V4
    description: Create and manage users in your workspace
  - name: Meeting Type V4
    description: Configure meeting templates with durations, buffers, and conferencing
  - name: availability
    description: Manage weekly schedules and availability settings
  - name: Booking V4
    description: Create new bookings
  - name: Booking Availability V4
    description: Query available time slots for booking
  - name: Appointment V4
    description: Manage existing appointments
  - name: Attendee V4
    description: Manage attendee details and notes
  - name: Calendar Connections V4
    description: Connect and sync external calendars
  - name: One Time Booking Link V4
    description: Create single-use booking links
  - name: availability-exception
    description: Override availability for specific dates
  - name: Booking Link V4
    description: Configure various booking page types
  - name: Personal Page V4
    description: Manage user profile pages
  - name: Handoff V4
    description: Reassign meetings to other hosts
  - name: Calendar Auth V4
    description: OAuth callbacks for calendar providers
  - name: Queue V4
    description: Round-robin and queue-based routing (Beta)
  - name: Queue User Group V4
    description: Manage queue user groups (Beta)
  - name: Meeting Type Template V4
    description: Reusable meeting type configurations (Beta)
  - name: Attendee Pending V4
    description: Manage pending attendee approvals (Beta)
  - name: Provisional Booking V4
    description: Manage provisional/unconfirmed bookings (Beta)
paths:
  /v4/handoff/bulk:
    post:
      tags:
        - Handoff V4
      summary: Bulk handoff appointments
      description: >-
        Hands off multiple appointments from specified users within a time
        period to a target user.
      operationId: bulkHandoff
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkHandoffDto'
      responses:
        '200':
          description: Bulk handoff completed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkHandoffResponseDto'
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkHandoffResponseDto'
      security:
        - ApiUserHeader: []
        - JWT: []
        - ApiKey: []
components:
  schemas:
    BulkHandoffDto:
      type: object
      properties:
        userId:
          description: Array of user IDs to handoff appointments from
          type: array
          items:
            type: string
            format: uuid
        start:
          type: string
          description: Period start date in ISO format
        end:
          type: string
          description: Period end date in ISO format
        targetUserId:
          type: string
          description: Target user ID to handoff appointments to
          format: uuid
        enableAvailabilityCheck:
          type: boolean
          description: Enable availability check during handoff
        targetUserIds:
          description: >-
            Array of target user IDs to distribute appointments across
            (round-robin)
          type: array
          items:
            type: string
            format: uuid
        appointmentIds:
          description: >-
            Specific appointment IDs to handoff (cherry-pick). If not provided,
            all matching appointments are included.
          type: array
          items:
            type: string
            format: uuid
        ignoreAvailability:
          type: boolean
          description: >-
            If true, ignore availability conflicts and force handoff all
            appointments
      required:
        - userId
        - start
        - end
    BulkHandoffResponseDto:
      type: object
      properties:
        success:
          description: Array of appointment IDs that were successfully handed off
          type: array
          items:
            type: string
        conflicts:
          description: >-
            Array of appointment IDs that could not be handed off due to
            conflicts
          type: array
          items:
            type: string
      required:
        - success
  securitySchemes:
    ApiUserHeader:
      type: apiKey
      in: header
      name: x-meetergo-api-user-id
      description: >-
        User ID to act on behalf of. Platform API Keys only (required with an
        API Key unless the endpoint states otherwise). Requests authenticated
        with a Personal Access Token are rejected if this header names another
        user.
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: JWT Bearer token for standard user authentication
    ApiKey:
      scheme: bearer
      bearerFormat: API Key
      type: http
      description: >-
        Bearer token: a Platform API Key (format: ak_live:<uuid>:<secret>) or a
        Personal Access Token (format: rgo-...). PATs always act as the token
        owner.

````