Templates Test
Templates/Render/Order/{orderId}/Tickets
Return the rendered tickets for the provided order Id

Composite tickets are not currently supported, so a request to print one will instead return ticket elements for each performance, as if no composite ticket design had been selected for the package.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Templates/Render/Order/{orderId}/Tickets

URI Parameters

Parameter Name Data Type Required Notes
orderId integer Y Id of the order used to format the template.

The print order tickets request

Request Body

Request object type : TicketsRenderRequest

Request object type TicketsRenderRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
Body string Y Text to be processed and rendered.
PrintOrderTicketsRequest PrintOrderTicketsRequest Y The print order tickets request.
{
  "Body": "sample string 1",
  "PrintOrderTicketsRequest": {
    "HeaderDesignId": 1,
    "IncludeReceipts": true,
    "ReprintTickets": true,
    "TicketDesignId": 1,
    "LineItems": "sample string 1",
    "SubLineItems": "sample string 2",
    "NewTicketNoForReprints": true,
    "PrinterType": "sample string 3",
    "BatchId": 1
  }
}
<TicketsRenderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Body>sample string 1</Body>
  <PrintOrderTicketsRequest>
    <BatchId>1</BatchId>
    <HeaderDesignId>1</HeaderDesignId>
    <IncludeReceipts>true</IncludeReceipts>
    <LineItems>sample string 1</LineItems>
    <NewTicketNoForReprints>true</NewTicketNoForReprints>
    <PrinterType>sample string 3</PrinterType>
    <ReprintTickets>true</ReprintTickets>
    <SubLineItems>sample string 2</SubLineItems>
    <TicketDesignId>1</TicketDesignId>
  </PrintOrderTicketsRequest>
</TicketsRenderRequest>

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 Changed 15.1.0 Route has changed from Templates/Render/Orders/{orderId}/Tickets to Templates/Render/Order/{orderId}/Tickets Templates/Render/Orders/{orderId}/Tickets Templates/Render/Order/{orderId}/Tickets