Skip to contentSkip to navigationSkip to topbar
On this page

Delete a transactional template version.



API Overview

api-overview page anchor

Represents the code for a particular transactional template. Each transactional template can have multiple versions, each version with its own subject and content. Each user can have up to 300 versions across all templates.

For more information about transactional templates, please see our Transactional Templates documentation. You can also manage your Transactional Templates in the Dynamic Templates section of the Twilio SendGrid App(link takes you to an external page).


DELETE/v3/templates/{template_id}/versions/{version_id}

Base url: https://api.sendgrid.com (for global users and subusers)

Base url: https://api.eu.sendgrid.com (for EU regional subusers)

This endpoint allows you to delete a transactional template version.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>

on-behalf-ofstringOptional

The on-behalf-of header allows you to make API calls from a parent account on behalf of the parent's Subusers or customer accounts. You will use the parent account's API key when using this header. When making a call on behalf of a customer account, the property value should be "account-id" followed by the customer account's ID (e.g., on-behalf-of: account-id <account-id>). When making a call on behalf of a Subuser, the property value should be the Subuser's username (e.g., on-behalf-of: <subuser-username>). See On Behalf Of for more information.

Property nameTypeRequiredDescription
template_idstring<uuid>required

The ID of the original template


version_idstring<uuid>required

The ID of the template version

204
No response body.
Delete a transactional template version.Link to code sample: Delete a transactional template version.
1
const client = require('@sendgrid/client');
2
client.setApiKey(process.env.SENDGRID_API_KEY);
3
4
const template_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";
5
const version_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";
6
7
const request = {
8
url: `/v3/templates/${template_id}/versions/${version_id}`,
9
method: 'DELETE',
10
11
}
12
13
client.request(request)
14
.then(([response, body]) => {
15
console.log(response.statusCode);
16
console.log(response.body);
17
})
18
.catch(error => {
19
console.error(error);
20
});