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.
scheduledTime (required) β An object that defines the selected meeting time.
start_time (required) β A number representing the meeting start time in Unix epoch milliseconds.
end_time (required) β A number representing the meeting end time in Unix epoch milliseconds.
timezone β A string in IANA format (e.g. America/Los_Angeles). This value is used solely for formatting the confirmation email sent to the prospect. The actual meeting time is determined using the raw timestamps.
meetingId β A string representing the unique identifier for the booked meeting.
organizerEmail β A string containing the email address of the assigned rep who will host the meeting.
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.