Skip to main content
POST
/
bookings
/
complete-session
Complete Session
curl --request POST \
  --url http://localhost:3000/api/bookings/complete-session \
  --header 'Content-Type: application/json' \
  --data '
{
  "bookingId": "<string>",
  "sessionNumber": 123
}
'
{
  "success": true
}

Body

application/json
bookingId
string
required

The ID of the booking

sessionNumber
number
required

The number of the session to complete

Response

Session completed successfully

success
boolean
required

Whether the operation was successful