curl --request DELETE \
--url https://api.autosend.com/v1/templates/A-abc123def456ghi789jk \
--header 'Authorization: Bearer <token>'
{
"success": true,
"message": "Template successfully deleted."
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the template to delete.Example: "A-abc123def456ghi789jk"
Response
Template deleted successfully
Indicates if the request was successfulExample: true
Confirmation messageExample: "Template successfully deleted."