UserPreferences Test
Security/UserPreferences/{id}
Update a user preference by id.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Security/UserPreferences/{id}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y

Request Body

Request object type : UserPreference

Request object type UserPreference has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
Key string 30 Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
Value string 8000 N
{
  "Key": "sample string 1",
  "Id": 1,
  "Value": "sample string 2",
  "CreatedDateTime": "2025-04-24T09:17:31.278167-07:00",
  "CreateLocation": "sample string 3",
  "CreatedBy": "sample string 4",
  "UpdatedDateTime": "2025-04-24T09:17:31.278167-07:00",
  "UpdatedBy": "sample string 5"
}
<UserPreference xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 3</CreateLocation>
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDateTime>2025-04-24T09:17:31.278167-07:00</CreatedDateTime>
  <Id>1</Id>
  <Key>sample string 1</Key>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:17:31.278167-07:00</UpdatedDateTime>
  <Value>sample string 2</Value>
</UserPreference>

Response object type : UserPreference

Response object type UserPreference has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
Id integer Y Non-updatable
Key string 30 Y
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
Value string 8000 N
{
  "Key": "sample string 1",
  "Id": 1,
  "Value": "sample string 2",
  "CreatedDateTime": "2025-04-24T09:17:31.278167-07:00",
  "CreateLocation": "sample string 3",
  "CreatedBy": "sample string 4",
  "UpdatedDateTime": "2025-04-24T09:17:31.278167-07:00",
  "UpdatedBy": "sample string 5"
}
<UserPreference xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreateLocation>sample string 3</CreateLocation>
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDateTime>2025-04-24T09:17:31.278167-07:00</CreatedDateTime>
  <Id>1</Id>
  <Key>sample string 1</Key>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:17:31.278167-07:00</UpdatedDateTime>
  <Value>sample string 2</Value>
</UserPreference>
Change Version Description Contract Old New
Parameter Changed 15.0.0 id has been marked as required. Required