Templates Test
Templates/Render/Login/{loginId}/Credentials
Return the rendered login credentials template for the provided web login id

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/Render/Login/{loginId}/Credentials

URI Parameters

Parameter Name Data Type Required Notes
loginId integer Y Login id of the order to retrieve information from.

Template body used to render the template

Request Body

Request object type : RenderRequest

Request object type RenderRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Y Text to be processed and rendered.
NameValues Collection of NameValue A collection of name/value pairs to be used in the template.
{
  "Body": "sample string 1",
  "NameValues": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    }
  ]
}
<RenderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 1</Body>
  <NameValues>
    <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>
</RenderRequest>

Response object type : RenderResponse

Response object type RenderResponse has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Y Rendered html text.
{
  "Body": "sample string 1"
}
<RenderedResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 1</Body>
</RenderedResponse>
Change Version Description Contract Old New
Response Type Changed 15.0.0 Response type has changed from TemplateBody to RenderResponse TemplateBody RenderResponse
Parameter Added 15.0.0 request has changed from TemplateBody to RenderRequest TemplateBody RenderRequest