Qualifications Test
ReferenceData/Qualifications/{id}?filter={filter}&maintenanceMode={maintenanceMode}
Get the details of a Qualification by id. To get the resource only if the user has write/edit access, pass filter="writeonly". To get the resources in maintenance mode (which ignores 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/Qualifications/{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 : Qualification

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