Delete a Reminder Template
DELETE
/businesses/{businessId}/notifications/reminder-templates/{reminderTemplateId}
const url = 'https://api.upvio.com/v1/businesses/example/notifications/reminder-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/reminder-templates/example \ --header 'Authorization: Bearer <token>'Soft-delete a reminder template.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”businessId
required
The ID of the Business.
string
reminderTemplateId
required
The ID of the Reminder Template.
string
Responses
Section titled “Responses”Confirmation of deletion.
Reminder Template not found.
Media typeapplication/json
object
error
object
code
number
title
string
Example
{ "error": { "code": 404, "title": "Not Found" }}