Templates Test
Templates/{templateId}
Get the details of a template by id
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Templates/{templateId}

URI Parameters

Parameter Name Data Type Required Notes
templateId integer Y

Request Body

None.

No request body.

Response object type : Template

Response object type Template has the following properties.
Property Name Data Type Length Required Readonly Notes
Category TemplateCategorySummary N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Description string N
EditIndicator boolean
Id integer N
Inactive boolean N
IsHtmlBody boolean
TemplateBody string N
TemplateSubject string N
UpdatedBy string N
UpdatedDateTime date N
{
  "Category": {
    "Id": 1,
    "Description": "sample string 1",
    "Inactive": true,
    "EditIndicator": true,
    "Type": {
      "Id": 1,
      "Description": "sample string 1"
    }
  },
  "CreatedDateTime": "2025-04-24T09:23:05.9961837-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Description": "sample string 3",
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T09:23:05.9961837-07:00",
  "UpdatedBy": "sample string 5",
  "TemplateSubject": "sample string 6",
  "TemplateBody": "sample string 7",
  "IsHtmlBody": true,
  "EditIndicator": true
}
<Template xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Category>
    <Description>sample string 1</Description>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <Type>
      <Description>sample string 1</Description>
      <Id>1</Id>
    </Type>
  </Category>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T09:23:05.9961837-07:00</CreatedDateTime>
  <Description>sample string 3</Description>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <IsHtmlBody>true</IsHtmlBody>
  <TemplateBody>sample string 7</TemplateBody>
  <TemplateSubject>sample string 6</TemplateSubject>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:23:05.9961837-07:00</UpdatedDateTime>
</Template>
Change Version Description Contract Old New
Parameter Changed 15.0.0 templateId has been marked as required. Required