Templates Test
Templates/{templateId}/Login/{loginId}/Credentials
Get a formatted html body for login credentials.

This endpoint will not generate a password token and should be used for testing a login credentials template.

Use the SendCredentials endpoint in Web/Session to send a login credentials email with a generated password token.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Templates/{templateId}/Login/{loginId}/Credentials

URI Parameters

Parameter Name Data Type Required Notes
templateId integer Y Id of the template used to format the html.
loginId integer Y Login id of the user to retrieve information from.

A list of name/value pairs to be used in the template

Request Body

Request object type : Collection of NameValue

Request object type Collection of NameValue has the following properties.
Property Name Data Type Length Required Readonly Notes
Name string
Value string
[
  {
    "Name": "sample string 1",
    "Value": "sample string 2"
  },
  {
    "Name": "sample string 1",
    "Value": "sample string 2"
  }
]
<NameValues xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <NameValue>
    <Name>sample string 1</Name>
    <Value>sample string 2</Value>
  </NameValue>
  <NameValue>
    <Name>sample string 1</Name>
    <Value>sample string 2</Value>
  </NameValue>
</NameValues>

Response object type : TemplateBody

Response object type TemplateBody has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Y Text to be processed and rendered.
IsHtmlBody boolean If true, Body text is interpreted and rendered as HTML.
{
  "Body": "sample string 1",
  "IsHtmlBody": true
}
<TemplateBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 1</Body>
  <IsHtmlBody>true</IsHtmlBody>
</TemplateBody>
Change Version Description Contract Old New
Operation Changed 15.0.0 Route verb has changed from Get to Post Get Post
Parameter Added 15.0.0 New parameter added request request