Http Verb | POST |
Resource URL | https://ts-stg-appgw.calacademy.org/TessituraService/Templates/{templateId}/Order/{orderId}/Tickets |
URI Parameters
|
The print order tickets request Request BodyRequest object type : 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
}
<PrintOrderTicketsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<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>
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.1.0 | Route has changed from Templates/{templateId}/Orders/{orderId}/Tickets to Templates/{templateId}/Order/{orderId}/Tickets | Templates/{templateId}/Orders/{orderId}/Tickets | Templates/{templateId}/Order/{orderId}/Tickets |