openapi: 3.0.0 info: title: LeanData BookIt πŸ—“οΈ Availability πŸ—“οΈ Availability πŸ“† Meetings > Manage API description: Programmatic scheduling, availability lookup, and meeting management for the LeanData BookIt scheduling product. Power custom UIs with server-to-server access to availability, round-robin, and meeting CRUD. version: 1.0.0 servers: - url: https://api.leandata.com tags: - name: πŸ“† Meetings > Manage description: '' paths: /v1/meeting/:meetingId: patch: tags: - πŸ“† Meetings > Manage summary: v1/meeting/:meetingId description: '

This endpoint is used to reschedule an existing meeting by providing a new start and end time.

πŸ’‘ The :meetingId path parameter should be replaced with the unique ID of the meeting you want to update.


Request Body Parameters


Response Body Parameters

' requestBody: content: application/json: schema: type: object example: scheduledTime: start_time: 1746547200000 end_time: 1746548100000 timezone: America/Los_Angeles parameters: - name: Content-Type in: header schema: type: string example: application/json responses: '200': description: Successful response content: application/json: {} delete: tags: - πŸ“† Meetings > Manage summary: v1/meeting/:meetingId description: '

This endpoint cancels a previously scheduled meeting. It requires only the meeting ID in the URL pathβ€”no request body is needed.

A successful cancellation returns a 200 OK status. There is no response body.

' responses: '200': description: Successful response content: application/json: {}