get_template_version
Retrieve specific template version details from SendGrid to access email template content, structure, and configuration for email marketing and transactional campaigns.
Instructions
Retrieve details of a specific template version
Input Schema
Name | Required | Description | Default |
---|---|---|---|
template_id | Yes | ID of the template | |
version_id | Yes | ID of the version to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"template_id": {
"description": "ID of the template",
"type": "string"
},
"version_id": {
"description": "ID of the version to retrieve",
"type": "string"
}
},
"required": [
"template_id",
"version_id"
],
"type": "object"
}