Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Activate 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).


POST/v3/templates/{template_id}/versions/{version_id}/activate

Base url: https://api.sendgrid.com

This endpoint allows you to activate a version of one of your templates.


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

200
SchemaExample
Property nameTypeRequiredDescriptionChild properties
warningsarray[object]

activeenum<integer>

Set the version as the active version associated with the template. Only one version of a template can be active. The first version created for a template will automatically be set to Active.

Possible values:
01

namestring

Name of the transactional template version.

Max length: 100

html_contentstring

The HTML content of the Design.


plain_contentstring

Plain text content of the Design.


generate_plain_contentboolean

If true, plain_content is always generated from html_content. If false, plain_content is not altered.

Default: true

subjectstring

Subject of the new transactional template version.

Max length: 255

editorenum<string>

The editor used in the UI.

Possible values:
codedesign

test_datastring

For dynamic templates only, the mock json data that will be used for template preview and test sends.


idstring<uuid>

ID of the transactional template version.


template_idstring

ID of the transactional template.


updated_atstring

The date and time that this transactional template version was updated.


thumbnail_urlstring

A Thumbnail preview of the template's html content.

Activate a transactional template version.

activate-a-transactional-template-version page anchor
Node.js
Python
C#
Java
Go
PHP
Ruby
curl

_20
const client = require('@sendgrid/client');
_20
client.setApiKey(process.env.SENDGRID_API_KEY);
_20
_20
const template_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";
_20
const version_id = "f15982c1-a82c-4e87-a6b2-a4a63b4b7644";
_20
_20
const request = {
_20
url: `/v3/templates/${template_id}/versions/${version_id}/activate`,
_20
method: 'POST',
_20
_20
}
_20
_20
client.request(request)
_20
.then(([response, body]) => {
_20
console.log(response.statusCode);
_20
console.log(response.body);
_20
})
_20
.catch(error => {
_20
console.error(error);
_20
});


Rate this page: