ContactPoints Test
CRM/ContactPoints?constituentId={constituentId}&includeAffiliations={includeAffiliations}
Get all the delivery points for the specified constituent (constituentId) and all its visible affiliation's delivery point purposes as well. To exclude delivery point purposes of the visible affiliations pass includeAffiliations=false.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/ContactPoints?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: true).

Request Body

None.

No request body.

Response object type : Collection of ContactPoint

Response object type Collection of ContactPoint has the following properties.
Property Name Data Type Length Required Readonly Notes
Address AddressContactPoint
ConstituentId integer
ContactPointCategoryId integer
ElectronicAddress ElectronicAddressContactPoint
Id integer
Phone PhoneContactPoint
Type EntitySummary
[
  {
    "Id": 1,
    "ConstituentId": 1,
    "ContactPointCategoryId": 2,
    "Type": {
      "Id": 1,
      "Description": "sample string 2"
    },
    "Address": {
      "Id": 1,
      "Street1": "sample string 1",
      "Street2": "sample string 2",
      "Street3": "sample string 3",
      "City": "sample string 4",
      "StateCode": "sample string 5",
      "PostalCode": "sample string 6",
      "CountryId": 1,
      "Inactive": true
    },
    "Phone": {
      "Id": 1,
      "AddressId": 1,
      "PhoneNumber": "sample string 1"
    },
    "ElectronicAddress": {
      "Id": 1,
      "ElectronicAddress": "sample string 1",
      "Inactive": true
    }
  },
  {
    "Id": 1,
    "ConstituentId": 1,
    "ContactPointCategoryId": 2,
    "Type": {
      "Id": 1,
      "Description": "sample string 2"
    },
    "Address": {
      "Id": 1,
      "Street1": "sample string 1",
      "Street2": "sample string 2",
      "Street3": "sample string 3",
      "City": "sample string 4",
      "StateCode": "sample string 5",
      "PostalCode": "sample string 6",
      "CountryId": 1,
      "Inactive": true
    },
    "Phone": {
      "Id": 1,
      "AddressId": 1,
      "PhoneNumber": "sample string 1"
    },
    "ElectronicAddress": {
      "Id": 1,
      "ElectronicAddress": "sample string 1",
      "Inactive": true
    }
  }
]
<ContactPoints xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <ContactPoint>
    <Address>
      <City>sample string 4</City>
      <CountryId>1</CountryId>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <PostalCode>sample string 6</PostalCode>
      <StateCode>sample string 5</StateCode>
      <Street1>sample string 1</Street1>
      <Street2>sample string 2</Street2>
      <Street3>sample string 3</Street3>
    </Address>
    <ConstituentId>1</ConstituentId>
    <ContactPointCategoryId>2</ContactPointCategoryId>
    <ElectronicAddress>
      <ElectronicAddress>sample string 1</ElectronicAddress>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ElectronicAddress>
    <Id>1</Id>
    <Phone>
      <AddressId>1</AddressId>
      <Id>1</Id>
      <PhoneNumber>sample string 1</PhoneNumber>
    </Phone>
    <Type>
      <Description>sample string 2</Description>
      <Id>1</Id>
    </Type>
  </ContactPoint>
  <ContactPoint>
    <Address>
      <City>sample string 4</City>
      <CountryId>1</CountryId>
      <Id>1</Id>
      <Inactive>true</Inactive>
      <PostalCode>sample string 6</PostalCode>
      <StateCode>sample string 5</StateCode>
      <Street1>sample string 1</Street1>
      <Street2>sample string 2</Street2>
      <Street3>sample string 3</Street3>
    </Address>
    <ConstituentId>1</ConstituentId>
    <ContactPointCategoryId>2</ContactPointCategoryId>
    <ElectronicAddress>
      <ElectronicAddress>sample string 1</ElectronicAddress>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </ElectronicAddress>
    <Id>1</Id>
    <Phone>
      <AddressId>1</AddressId>
      <Id>1</Id>
      <PhoneNumber>sample string 1</PhoneNumber>
    </Phone>
    <Type>
      <Description>sample string 2</Description>
      <Id>1</Id>
    </Type>
  </ContactPoint>
</ContactPoints>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required