Delete a Booking Event Template
DELETE
/businesses/{businessId}/notifications/booking-event-templates/{bookingEventTemplateId}
const url = 'https://api.upvio.com/v1/businesses/example/notifications/booking-event-templates/example';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.upvio.com/v1/businesses/example/notifications/booking-event-templates/example \ --header 'Authorization: Bearer <token>'Soft-delete a booking event notification template.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” businessId
required
The ID of the Business.
string
bookingEventTemplateId
required
The ID of the Booking Event Template.
string
Responses
Section titled “ Responses ”Confirmation of deletion.
Booking Event Template not found.
Media type application/json
object
error
object
code
number
title
string
Example
{ "error": { "code": 404, "title": "Not Found" }}