Skip to main content
POST
/
bookings
/
mark-session-deposit-paid
Mark Session Deposit as Paid
curl --request POST \
  --url http://localhost:3000/api/bookings/mark-session-deposit-paid \
  --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 mark deposit as paid

Response

Deposit marked as paid successfully

success
boolean
required

Whether the operation was successful