SpecialActivities Test
CRM/SpecialActivities?constituentId={constituentId}&includeAffiliations={includeAffiliations}
Get details of all the activity records for the specified constituent id and all its visible affiliations' activity records as well. To exclude activity records of the visible affiliations, pass includeAffiliations=false.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/SpecialActivities?constituentId={constituentId}&includeAffiliations={includeAffiliations}

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer Y Limit results by constituent.
includeAffiliations boolean N Include all of the constituent's affiliates in the results (default: false).

Request Body

None.

No request body.

Response object type : Collection of SpecialActivity

Response object type Collection of SpecialActivity has the following properties.
Property Name Data Type Length Required Readonly Notes
ConstituentId integer N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Id integer N
Notes string N
NumberOfAttendees integer N
Performance string N
SpecialActivityDateTime date N
Status SpecialActivityStatusSummary N
FK: TR_SPECIAL_ACTIVITY_STATUS.id   Resource: SpecialActivityStatuses
Type SpecialActivityTypeSummary N
FK: TR_SPECIAL_ACTIVITY.id   Resource: SpecialActivityTypes
UpdatedBy string N
UpdatedDateTime date N
WorkerConstituentId integer N
FK: T_CUSTOMER.customer_no   Resource: Constituents
[
  {
    "CreatedDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "ConstituentId": 1,
    "UpdatedDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "UpdatedBy": "sample string 3",
    "Notes": "sample string 4",
    "NumberOfAttendees": 1,
    "Performance": "sample string 5",
    "Id": 1,
    "SpecialActivityDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "Status": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "Type": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "WorkerConstituentId": 1
  },
  {
    "CreatedDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "CreateLocation": "sample string 1",
    "CreatedBy": "sample string 2",
    "ConstituentId": 1,
    "UpdatedDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "UpdatedBy": "sample string 3",
    "Notes": "sample string 4",
    "NumberOfAttendees": 1,
    "Performance": "sample string 5",
    "Id": 1,
    "SpecialActivityDateTime": "2025-04-24T05:25:30.4676771-07:00",
    "Status": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "Type": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true
    },
    "WorkerConstituentId": 1
  }
]
<SpecialActivities xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <SpecialActivity>
    <ConstituentId>1</ConstituentId>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:25:30.4676771-07:00</CreatedDateTime>
    <Id>1</Id>
    <Notes>sample string 4</Notes>
    <NumberOfAttendees>1</NumberOfAttendees>
    <Performance>sample string 5</Performance>
    <SpecialActivityDateTime>2025-04-24T05:25:30.4676771-07:00</SpecialActivityDateTime>
    <Status>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </Status>
    <Type>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </Type>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:25:30.4676771-07:00</UpdatedDateTime>
    <WorkerConstituentId>1</WorkerConstituentId>
  </SpecialActivity>
  <SpecialActivity>
    <ConstituentId>1</ConstituentId>
    <CreateLocation>sample string 1</CreateLocation>
    <CreatedBy>sample string 2</CreatedBy>
    <CreatedDateTime>2025-04-24T05:25:30.4676771-07:00</CreatedDateTime>
    <Id>1</Id>
    <Notes>sample string 4</Notes>
    <NumberOfAttendees>1</NumberOfAttendees>
    <Performance>sample string 5</Performance>
    <SpecialActivityDateTime>2025-04-24T05:25:30.4676771-07:00</SpecialActivityDateTime>
    <Status>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </Status>
    <Type>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </Type>
    <UpdatedBy>sample string 3</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:25:30.4676771-07:00</UpdatedDateTime>
    <WorkerConstituentId>1</WorkerConstituentId>
  </SpecialActivity>
</SpecialActivities>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required