Http Verb | POST |
Resource URL | https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/Print/PrintStrings |
URI Parameters
|
Request BodyRequest object type : PrintOrderRequest
|
{
"OrderId": 1,
"HeaderDesignId": 1,
"IncludeReceipts": true,
"ReprintTickets": true,
"TicketDesignId": 1,
"Mode": 1,
"LineItems": "sample string 1",
"SubLineItems": "sample string 2",
"NewTicketNoForReprints": true,
"PrinterType": "sample string 3"
}
<PrintOrderRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<HeaderDesignId>1</HeaderDesignId>
<IncludeReceipts>true</IncludeReceipts>
<LineItems>sample string 1</LineItems>
<Mode>1</Mode>
<NewTicketNoForReprints>true</NewTicketNoForReprints>
<OrderId>1</OrderId>
<PrinterType>sample string 3</PrinterType>
<ReprintTickets>true</ReprintTickets>
<SubLineItems>sample string 2</SubLineItems>
<TicketDesignId>1</TicketDesignId>
</PrintOrderRequest>
Response object type : PrintOrderResponse
Response object type PrintOrderResponse has the following properties. |
Property Name | Data Type | Length | Required | Readonly | Notes |
---|---|---|---|---|---|
PrintStrings | Collection of string |
{
"PrintStrings": [
"sample string 1",
"sample string 2"
]
}
<PrintOrderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<PrintStrings>
<PrintString>sample string 1</PrintString>
<PrintString>sample string 2</PrintString>
</PrintStrings>
</PrintOrderResponse>
Change | Version | Description | Contract | Old | New |
---|---|---|---|---|---|
Parameter Changed | 15.0.0 | sessionKey has been marked as required. | Required |