ContactPermissions Test
CRM/ContactPermissions?constituentId={constituentId}&includeAffiliations={includeAffiliations}&activeOnly={activeOnly}
Get all the contact permissions for the specified constituent and its affiliations if requested
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/ContactPermissions?constituentId={constituentId}&includeAffiliations={includeAffiliations}&activeOnly={activeOnly}

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: true).
activeOnly boolean N

Request Body

None.

No request body.

Response object type : Collection of ContactPermission

Response object type Collection of ContactPermission has the following properties.
Property Name Data Type Length Required Readonly Notes
Answer string N
Constituent Entity N
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean N
Id integer N
LastAskedDateTime date N
ShouldAsk boolean N readonly Whether constituent should be asked for this permission type. This is generated by the service and should not be included in a PUT or POST.
Type ContactPermissionTypeSummary N
FK: TR_CONTACT_PERM_TYPE.id   Resource: ContactPermissionTypes
UpdatedBy string N
UpdatedDateTime date N
[
  {
    "Answer": "sample string 1",
    "CreatedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "CreateLocation": "sample string 2",
    "CreatedBy": "sample string 3",
    "Constituent": {
      "Id": 1
    },
    "Id": 1,
    "LastAskedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "ShouldAsk": true,
    "UpdatedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "UpdatedBy": "sample string 5",
    "Type": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true,
      "Category": {
        "Id": 1,
        "Description": "sample string 1",
        "Inactive": true,
        "AskFrequencyMonths": 1
      },
      "Presenter": true,
      "Rank": 4,
      "DefaultValueForAdd": "sample string 5",
      "EditIndicator": true
    },
    "EditIndicator": true
  },
  {
    "Answer": "sample string 1",
    "CreatedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "CreateLocation": "sample string 2",
    "CreatedBy": "sample string 3",
    "Constituent": {
      "Id": 1
    },
    "Id": 1,
    "LastAskedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "ShouldAsk": true,
    "UpdatedDateTime": "2025-04-24T09:44:25.7621738-07:00",
    "UpdatedBy": "sample string 5",
    "Type": {
      "Id": 1,
      "Description": "sample string 1",
      "Inactive": true,
      "Category": {
        "Id": 1,
        "Description": "sample string 1",
        "Inactive": true,
        "AskFrequencyMonths": 1
      },
      "Presenter": true,
      "Rank": 4,
      "DefaultValueForAdd": "sample string 5",
      "EditIndicator": true
    },
    "EditIndicator": true
  }
]
<ContactPermissions xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ContactPermission>
    <Answer>sample string 1</Answer>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 2</CreateLocation>
    <CreatedBy>sample string 3</CreatedBy>
    <CreatedDateTime>2025-04-24T09:44:25.7621738-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <LastAskedDateTime>2025-04-24T09:44:25.7621738-07:00</LastAskedDateTime>
    <ShouldAsk>true</ShouldAsk>
    <Type>
      <Category>
        <AskFrequencyMonths>1</AskFrequencyMonths>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
      </Category>
      <DefaultValueForAdd>sample string 5</DefaultValueForAdd>
      <Description>sample string 1</Description>
      <EditIndicator>true</EditIndicator>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <Presenter>true</Presenter>
      <Rank>4</Rank>
    </Type>
    <UpdatedBy>sample string 5</UpdatedBy>
    <UpdatedDateTime>2025-04-24T09:44:25.7621738-07:00</UpdatedDateTime>
  </ContactPermission>
  <ContactPermission>
    <Answer>sample string 1</Answer>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 2</CreateLocation>
    <CreatedBy>sample string 3</CreatedBy>
    <CreatedDateTime>2025-04-24T09:44:25.7621738-07:00</CreatedDateTime>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <LastAskedDateTime>2025-04-24T09:44:25.7621738-07:00</LastAskedDateTime>
    <ShouldAsk>true</ShouldAsk>
    <Type>
      <Category>
        <AskFrequencyMonths>1</AskFrequencyMonths>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
      </Category>
      <DefaultValueForAdd>sample string 5</DefaultValueForAdd>
      <Description>sample string 1</Description>
      <EditIndicator>true</EditIndicator>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <Presenter>true</Presenter>
      <Rank>4</Rank>
    </Type>
    <UpdatedBy>sample string 5</UpdatedBy>
    <UpdatedDateTime>2025-04-24T09:44:25.7621738-07:00</UpdatedDateTime>
  </ContactPermission>
</ContactPermissions>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required