Adds the ability to confirm a booking using API (#243)

Simply adds the ability to update the status of a booking (meant for
confirming a booking) using the API
Fixes: https://github.com/calcom/cal.com/issues/7121
pull/9078/head
Syed Ali Shahbaz 2023-02-24 03:34:48 +05:30 committed by GitHub
parent d47fa578b7
commit 2a5688f2a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ const schemaBookingEditParams = z
title: z.string().optional(),
startTime: iso8601.optional(),
endTime: iso8601.optional(),
status: z.string().optional(),
})
.strict();