Actions Test
CRM/Actions/{actionId}
Update an issue action for a Constituent
Http Verb PUT
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Actions/{actionId}

URI Parameters

Parameter Name Data Type Required Notes
actionId integer Y

Request Body

Request object type : IssueAction

Request object type 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 Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
EditIndicator boolean
Id integer Y Non-updatable
Issue Entity N
FK: T_CUST_ACTIVITY.activity_no   Resource: Issues
LetterPrintedDate date N
Notes string 255 N
Resolved boolean N
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "ActionType": {
    "Description": "sample string 1",
    "Id": 1,
    "Inactive": true
  },
  "ActionDate": "2025-04-24T05:03:17.7548138-07:00",
  "Issue": {
    "Id": 1
  },
  "Constituent": {
    "Id": 1
  },
  "Notes": "sample string 1",
  "Resolved": true,
  "CreatedDateTime": "2025-04-24T05:03:17.7548138-07:00",
  "CreateLocation": "sample string 3",
  "CreatedBy": "sample string 4",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T05:03:17.7548138-07:00",
  "UpdatedBy": "sample string 5",
  "EditIndicator": true,
  "LetterPrintedDate": "2025-04-24T05:03:17.7548138-07:00"
}
<IssueAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ActionDate>2025-04-24T05:03:17.7548138-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-24T05:03:17.7548138-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <Issue>
    <Id>1</Id>
  </Issue>
  <LetterPrintedDate>2025-04-24T05:03:17.7548138-07:00</LetterPrintedDate>
  <Notes>sample string 1</Notes>
  <Resolved>true</Resolved>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:03:17.7548138-07:00</UpdatedDateTime>
</IssueAction>

Response object type : IssueAction

Response object type 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 Non-updatable
CreatedDateTime date N Non-updatable
CreateLocation string N Non-updatable
EditIndicator boolean
Id integer Y Non-updatable
Issue Entity N
FK: T_CUST_ACTIVITY.activity_no   Resource: Issues
LetterPrintedDate date N
Notes string 255 N
Resolved boolean N
UpdatedBy string N Auto-assigned
UpdatedDateTime date Y Auto-assigned
{
  "ActionType": {
    "Description": "sample string 1",
    "Id": 1,
    "Inactive": true
  },
  "ActionDate": "2025-04-24T05:03:17.7548138-07:00",
  "Issue": {
    "Id": 1
  },
  "Constituent": {
    "Id": 1
  },
  "Notes": "sample string 1",
  "Resolved": true,
  "CreatedDateTime": "2025-04-24T05:03:17.7548138-07:00",
  "CreateLocation": "sample string 3",
  "CreatedBy": "sample string 4",
  "Id": 1,
  "UpdatedDateTime": "2025-04-24T05:03:17.7548138-07:00",
  "UpdatedBy": "sample string 5",
  "EditIndicator": true,
  "LetterPrintedDate": "2025-04-24T05:03:17.7548138-07:00"
}
<IssueAction xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ActionDate>2025-04-24T05:03:17.7548138-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-24T05:03:17.7548138-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <Issue>
    <Id>1</Id>
  </Issue>
  <LetterPrintedDate>2025-04-24T05:03:17.7548138-07:00</LetterPrintedDate>
  <Notes>sample string 1</Notes>
  <Resolved>true</Resolved>
  <UpdatedBy>sample string 5</UpdatedBy>
  <UpdatedDateTime>2025-04-24T05:03:17.7548138-07:00</UpdatedDateTime>
</IssueAction>
Change Version Description Contract Old New
Parameter Changed 15.0.0 actionId has been marked as required. Required