Templates Test
Templates/Render/Order/{orderId}/Confirmation
Return the rendered order confirmation template for the provided order Id
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Templates/Render/Order/{orderId}/Confirmation

URI Parameters

Parameter Name Data Type Required Notes
orderId integer Y 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