Emails Test
Emails/Orders/{orderId}/Tickets/Send
Queues a ticket email
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Emails/Orders/{orderId}/Tickets/Send

URI Parameters

Parameter Name Data Type Required Notes
orderId string Y The order id.

Request Body

Request object type : SendTicketTemplateEmailRequest

Request object type SendTicketTemplateEmailRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
EmailAddress string Y Email address to send the rendered template to.
EmailProfileId integer Y Id of Email Profile used to send the email.
PrintOrderTicketsRequest PrintOrderTicketsRequest Y The print order tickets request.
TemplateId integer Y Id of template used to render HTML body.
{
  "TemplateId": 1,
  "EmailAddress": "sample string 2",
  "EmailProfileId": 3,
  "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
  }
}
<SendTicketTemplateEmailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <EmailAddress>sample string 2</EmailAddress>
  <EmailProfileId>3</EmailProfileId>
  <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>
  <TemplateId>1</TemplateId>
</SendTicketTemplateEmailRequest>

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

Change Version Description Contract Old New
Operation Added 15.0.0 SendTickets has been added. SendTickets