Cart Test
Web/Cart/{sessionKey}/SubLineItems/{subLineItemId}/Recipient
Updates the recipient on a sub line item
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/SubLineItems/{subLineItemId}/Recipient

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y
subLineItemId integer Y

Request Body

Request object type : UpdateRecipientRequest

Request object type UpdateRecipientRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
RecipientId integer Y The Id of the constituent to be the recipient of this ticket. Pass 0 to remove an existing recipient.
FK: T_CUSTOMER.customer_no   Resource: Constituents
{
  "RecipientId": 1
}
<UpdateRecipientRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <RecipientId>1</RecipientId>
</UpdateRecipientRequest>

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