SurveyQuestions Test
ReferenceData/SurveyQuestions/{id}?filter={filter}&maintenanceMode={maintenanceMode}
Get the details of a survey question by id. To get the resource only if the user has write/edit access, pass filter="writeonly". To get the resources in maintenance mode(ignore Control Groups), pass maintenanceMode="true". Maintenance mode requires users to have access to the reference tables. (Specified in TX_REFTABLE_USERGROUP).
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/ReferenceData/SurveyQuestions/{id}?filter={filter}&maintenanceMode={maintenanceMode}

URI Parameters

Parameter Name Data Type Required Notes
id integer Y The id of the resource.
filter string N Filter by user access (default: readwrite).
maintenanceMode boolean N Ignore control grouping (default: false).

Request Body

None.

No request body.

Response object type : SurveyQuestion

Response object type SurveyQuestion has the following properties.
Property Name Data Type Length Required Readonly Notes
AskType integer N
ControlGroup ControlGroupSummary N
FK: TR_CONTROL_GROUP.id   Resource: ControlGroups
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
DataType integer N
DefaultValue string N
Id integer N
Inactive boolean N
Question string N
ReferenceTable string N
ReferenceTableDescriptionColumn string N
ReferenceTableIdColumn string N
ReferenceTableSort string N
ReferenceTableWhereClause string N
Required boolean N
UpdatedBy string N
UpdatedDateTime date N
{
  "AskType": 1,
  "ControlGroup": {
    "Description": "sample string 1",
    "Id": 2,
    "Inactive": true
  },
  "CreatedDateTime": "2025-04-24T08:19:20.0929718-07:00",
  "CreatedBy": "sample string 2",
  "CreateLocation": "sample string 3",
  "DataType": 4,
  "DefaultValue": "sample string 5",
  "Id": 1,
  "Inactive": true,
  "Question": "sample string 6",
  "ReferenceTable": "sample string 7",
  "ReferenceTableDescriptionColumn": "sample string 8",
  "ReferenceTableIdColumn": "sample string 9",
  "ReferenceTableWhereClause": "sample string 10",
  "ReferenceTableSort": "sample string 11",
  "Required": true,
  "UpdatedBy": "sample string 12",
  "UpdatedDateTime": "2025-04-24T08:19:20.0929718-07:00"
}
<SurveyQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <AskType>1</AskType>
  <ControlGroup>
    <Description>sample string 1</Description>
    <Id>2</Id>
    <Inactive>true</Inactive>
  </ControlGroup>
  <CreateLocation>sample string 3</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T08:19:20.0929718-07:00</CreatedDateTime>
  <DataType>4</DataType>
  <DefaultValue>sample string 5</DefaultValue>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <Question>sample string 6</Question>
  <ReferenceTable>sample string 7</ReferenceTable>
  <ReferenceTableDescriptionColumn>sample string 8</ReferenceTableDescriptionColumn>
  <ReferenceTableIdColumn>sample string 9</ReferenceTableIdColumn>
  <ReferenceTableSort>sample string 11</ReferenceTableSort>
  <ReferenceTableWhereClause>sample string 10</ReferenceTableWhereClause>
  <Required>true</Required>
  <UpdatedBy>sample string 12</UpdatedBy>
  <UpdatedDateTime>2025-04-24T08:19:20.0929718-07:00</UpdatedDateTime>
</SurveyQuestion>
Change Version Description Contract Old New
Parameter Changed 15.0.0 id has been marked as required. Required