Session Test
Web/Session/{sessionKey}/Reprint
This method causes a Print at Home reprint request to be written for the specified order.

Note that the order will only be reprinted by the Tessitura Print at Home Ticketing service if the service is configured to recognize the delivery method used by the order.

The mode of sale for the order must also be set in the TR_PAHT_CONFIGURATION table to allow TPAHT reprints.

See the Tessitura Print at Home Ticketing Service document for more details.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Session/{sessionKey}/Reprint

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y

Request Body

Request object type : ReprintRequest

Request object type ReprintRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
EmailAddressId integer Y The ID of the email address to which to send the reprinted Print At Home ticket. The email address, if specified, must be owned by the current session's constituent. By setting this value to 0, the order will be emailed to the primary email address of the authenticated user. When 0 is used, the eaddress associated with the order will not be updated.
FK: T_EADDRESS.address_no   Resource: ElectronicAddresses
OrderId integer Y The Id of the order to reprint. The order specified must belong to current session's constituent.
FK: T_CUSTOMER.customer_no   Resource: Constituents
{
  "OrderId": 1,
  "EmailAddressId": 2
}
<ReprintRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <EmailAddressId>2</EmailAddressId>
  <OrderId>1</OrderId>
</ReprintRequest>

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
Parameter Changed 15.0.0 sessionKey has been marked as required. Required