Session Test
Web/Session/{sessionKey}/Variables
Update the value of an existing session variable.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Web/Session/{sessionKey}/Variables

URI Parameters

Parameter Name Data Type Required Notes
sessionKey string Y

Request Body

Request object type : SessionVariable

Request object type SessionVariable has the following properties.
Property Name Data Type Length Required Readonly Notes
Name string
Value string
{
  "Name": "sample string 1",
  "Value": "sample string 2"
}
<SessionVariable xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Name>sample string 1</Name>
  <Value>sample string 2</Value>
</SessionVariable>

Response object type : SessionVariable

Response object type SessionVariable has the following properties.
Property Name Data Type Length Required Readonly Notes
Name string
Value string
{
  "Name": "sample string 1",
  "Value": "sample string 2"
}
<SessionVariable xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Name>sample string 1</Name>
  <Value>sample string 2</Value>
</SessionVariable>
Change Version Description Contract Old New
Parameter Changed 15.0.0 sessionKey has been marked as required. Required