Templates Test
Templates/Render/Constituent/{constituentId}/Info
Return the rendered constituent info template for the provided constituent Id
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Templates/Render/Constituent/{constituentId}/Info

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer Y Id of the constituent 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
Operation Added 15.0.0 RenderConstituentInfo has been added. RenderConstituentInfo