Actions Test
CRM/Actions?constituentId={constituentId}&issueId={issueId}
Get details of all the actions for the given constituent or issue.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Actions?constituentId={constituentId}&issueId={issueId}

URI Parameters

Parameter Name Data Type Required Notes
constituentId integer Y Limit results by constituent.
issueId integer N

Request Body

None.

No request body.

Response object type : Collection of IssueAction

Response object type Collection of IssueAction has the following properties.
Property Name Data Type Length Required Readonly Notes
ActionDate date N
ActionType ActionTypeSummary N
FK: TR_ACTION.id   Resource: ActionTypes
Constituent Entity N
FK: T_CUSTOMER.customer_no   Resource: Constituents
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean
Id integer N
Issue Entity N
FK: T_CUST_ACTIVITY.activity_no   Resource: Issues
LetterPrintedDate date N
Notes string N
Resolved boolean N
UpdatedBy string N
UpdatedDateTime date N
[
  {
    "ActionType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true
    },
    "ActionDate": "2025-04-24T09:39:09.2814322-07:00",
    "Issue": {
      "Id": 1
    },
    "Constituent": {
      "Id": 1
    },
    "Notes": "sample string 1",
    "Resolved": true,
    "CreatedDateTime": "2025-04-24T09:39:09.2814322-07:00",
    "CreateLocation": "sample string 3",
    "CreatedBy": "sample string 4",
    "Id": 1,
    "UpdatedDateTime": "2025-04-24T09:39:09.2814322-07:00",
    "UpdatedBy": "sample string 5",
    "EditIndicator": true,
    "LetterPrintedDate": "2025-04-24T09:39:09.2814322-07:00"
  },
  {
    "ActionType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true
    },
    "ActionDate": "2025-04-24T09:39:09.2814322-07:00",
    "Issue": {
      "Id": 1
    },
    "Constituent": {
      "Id": 1
    },
    "Notes": "sample string 1",
    "Resolved": true,
    "CreatedDateTime": "2025-04-24T09:39:09.2814322-07:00",
    "CreateLocation": "sample string 3",
    "CreatedBy": "sample string 4",
    "Id": 1,
    "UpdatedDateTime": "2025-04-24T09:39:09.2814322-07:00",
    "UpdatedBy": "sample string 5",
    "EditIndicator": true,
    "LetterPrintedDate": "2025-04-24T09:39:09.2814322-07:00"
  }
]
<IssueActions xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <IssueAction>
    <ActionDate>2025-04-24T09:39:09.2814322-07:00</ActionDate>
    <ActionType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ActionType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 3</CreateLocation>
    <CreatedBy>sample string 4</CreatedBy>
    <CreatedDateTime>2025-04-24T09:39:09.2814322-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Issue>
      <Id>1</Id>
    </Issue>
    <LetterPrintedDate>2025-04-24T09:39:09.2814322-07:00</LetterPrintedDate>
    <Notes>sample string 1</Notes>
    <Resolved>true</Resolved>
    <UpdatedBy>sample string 5</UpdatedBy>
    <UpdatedDateTime>2025-04-24T09:39:09.2814322-07:00</UpdatedDateTime>
  </IssueAction>
  <IssueAction>
    <ActionDate>2025-04-24T09:39:09.2814322-07:00</ActionDate>
    <ActionType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ActionType>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 3</CreateLocation>
    <CreatedBy>sample string 4</CreatedBy>
    <CreatedDateTime>2025-04-24T09:39:09.2814322-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Issue>
      <Id>1</Id>
    </Issue>
    <LetterPrintedDate>2025-04-24T09:39:09.2814322-07:00</LetterPrintedDate>
    <Notes>sample string 1</Notes>
    <Resolved>true</Resolved>
    <UpdatedBy>sample string 5</UpdatedBy>
    <UpdatedDateTime>2025-04-24T09:39:09.2814322-07:00</UpdatedDateTime>
  </IssueAction>
</IssueActions>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required