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.
This endpoint allows you to delete a transactional template version.
Bearer <<YOUR_API_KEY_HERE>>
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.
The ID of the original template
The ID of the template version
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const template_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";5const version_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";67const request = {8url: `/v3/templates/${template_id}/versions/${version_id}`,9method: 'DELETE',1011}1213client.request(request)14.then(([response, body]) => {15console.log(response.statusCode);16console.log(response.body);17})18.catch(error => {19console.error(error);20});