ControlGroups Test
ReferenceData/ControlGroups/{id}?maintenanceMode={maintenanceMode}
Get the details of a control group by id.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/ReferenceData/ControlGroups/{id}?maintenanceMode={maintenanceMode}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y
maintenanceMode boolean N Ignore control grouping (default: false).

Request Body

None.

No request body.

Response object type : ControlGroup

Response object type ControlGroup has the following properties.
Property Name Data Type Length Required Readonly Notes
CreatedBy string
CreatedDateTime date
Description string
Id integer
Inactive boolean
Permission ControlGroupPermission
UpdatedBy string
UpdatedDateTime date
{
  "CreatedBy": "sample string 1",
  "CreatedDateTime": "2025-04-24T04:03:04.0540763-07:00",
  "Description": "sample string 2",
  "Id": 1,
  "Inactive": true,
  "Permission": 0,
  "UpdatedBy": "sample string 3",
  "UpdatedDateTime": "2025-04-24T04:03:04.0540763-07:00"
}
<ControlGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <CreatedBy>sample string 1</CreatedBy>
  <CreatedDateTime>2025-04-24T04:03:04.0540763-07:00</CreatedDateTime>
  <Description>sample string 2</Description>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <Permission>Read</Permission>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T04:03:04.0540763-07:00</UpdatedDateTime>
</ControlGroup>
Change Version Description Contract Old New
Parameter Changed 15.0.0 id has been marked as required. Required