Cart Test
Web/Cart/{sessionKey}/CustomData/{customId}
Updates a custom data value in the cart properties

Note: Only the Index and Value properties in the request should be used.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Cart/{sessionKey}/CustomData/{customId}

URI Parameters

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

Request Body

Request object type : CustomDataItem

Request object type CustomDataItem has the following properties.
Property Name Data Type Length Required Readonly Notes
DataType string
Description string
EditIndicator boolean
Index integer Y The index for the custom data element.
IsDropdown boolean
KeywordId integer
Name string
Value string Y The value for the custom data element.
{
  "Name": "sample string 1",
  "Index": 1,
  "KeywordId": 1,
  "IsDropdown": true,
  "Value": "sample string 2",
  "DataType": "sample string 3",
  "Description": "sample string 4",
  "EditIndicator": true
}
<CustomDataItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DataType>sample string 3</DataType>
  <Description>sample string 4</Description>
  <EditIndicator>true</EditIndicator>
  <Index>1</Index>
  <IsDropdown>true</IsDropdown>
  <KeywordId>1</KeywordId>
  <Name>sample string 1</Name>
  <Value>sample string 2</Value>
</CustomDataItem>

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