Skip to content

DELETE Delete Templates

Base URLs

Demo URL: https://demoapi.openletterconnect.com/api/v1

Production URL: https://api.openletterconnect.com/api/v1

{{base_url}}/templates/{{id}}

Description

This endpoint is used to delete a specific template from the system by its ID. By providing the template ID, users can remove the template permanently. The response will include a confirmation message indicating that the template was deleted successfully, along with any relevant data regarding the deletion.

AUTHORIZATION

Bearer Token

  • Token: {{jwt_token}}

Example Request

curl --location -g --request DELETE '{{base_url}}/templates/9' \
--data ''

Example Response

{
  "message": "Template Deleted Successfully",
  "data": {}
}