Composers Test
ReferenceData/Composers/{id}
Update an existing composer.
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/ReferenceData/Composers/{id}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y

Request Body

Request object type : Composer

Request object type Composer has the following properties.
Property Name Data Type Length Required Readonly Notes
Bio string 16 N
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
FirstName string 20 N
Id integer Y Non-updatable
Inactive boolean Y
LastName string 55 N
MiddleName string 20 N
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Bio": "sample string 1",
  "CreatedDateTime": "2025-04-24T09:07:10.3252738-07:00",
  "CreateLocation": "sample string 2",
  "CreatedBy": "sample string 3",
  "FirstName": "sample string 4",
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T09:07:10.3252738-07:00",
  "UpdatedBy": "sample string 5",
  "LastName": "sample string 6",
  "MiddleName": "sample string 7"
}
<Composer xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Bio>sample string 1</Bio>
  <CreateLocation>sample string 2</CreateLocation>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDateTime>2025-04-24T09:07:10.3252738-07:00</CreatedDateTime>
  <FirstName>sample string 4</FirstName>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <LastName>sample string 6</LastName>
  <MiddleName>sample string 7</MiddleName>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:07:10.3252738-07:00</UpdatedDateTime>
</Composer>

Response object type : Composer

Response object type Composer has the following properties.
Property Name Data Type Length Required Readonly Notes
Bio string 16 N
CreatedBy string N Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
FirstName string 20 N
Id integer Y Non-updatable
Inactive boolean Y
LastName string 55 N
MiddleName string 20 N
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "Bio": "sample string 1",
  "CreatedDateTime": "2025-04-24T09:07:10.3252738-07:00",
  "CreateLocation": "sample string 2",
  "CreatedBy": "sample string 3",
  "FirstName": "sample string 4",
  "Id": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T09:07:10.3252738-07:00",
  "UpdatedBy": "sample string 5",
  "LastName": "sample string 6",
  "MiddleName": "sample string 7"
}
<Composer xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Bio>sample string 1</Bio>
  <CreateLocation>sample string 2</CreateLocation>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDateTime>2025-04-24T09:07:10.3252738-07:00</CreatedDateTime>
  <FirstName>sample string 4</FirstName>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <LastName>sample string 6</LastName>
  <MiddleName>sample string 7</MiddleName>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:07:10.3252738-07:00</UpdatedDateTime>
</Composer>
Change Version Description Contract Old New
Parameter Changed 15.0.0 id has been marked as required. Required