ContactPermissions Test
CRM/ContactPermissions/{contactPermissionId}
Get details of a contact permission
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/ContactPermissions/{contactPermissionId}

URI Parameters

Parameter Name Data Type Required Notes
contactPermissionId integer Y

Request Body

None.

No request body.

Response object type : ContactPermission

Response object type 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-24T05:25:30.5614332-07:00",
  "CreateLocation": "sample string 2",
  "CreatedBy": "sample string 3",
  "Constituent": {
    "Id": 1
  },
  "Id": 1,
  "LastAskedDateTime": "2025-04-24T05:25:30.5614332-07:00",
  "ShouldAsk": true,
  "UpdatedDateTime": "2025-04-24T05:25:30.5614332-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
}
<ContactPermission xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Answer>sample string 1</Answer>
  <Constituent>
    <Id>1</Id>
  </Constituent>
  <CreateLocation>sample string 2</CreateLocation>
  <CreatedBy>sample string 3</CreatedBy>
  <CreatedDateTime>2025-04-24T05:25:30.5614332-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <LastAskedDateTime>2025-04-24T05:25:30.5614332-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-24T05:25:30.5614332-07:00</UpdatedDateTime>
</ContactPermission>
Change Version Description Contract Old New
Parameter Changed 15.0.0 contactPermissionId has been marked as required. Required