Phones Test
CRM/Phones?constituentId={constituentId}&includeAffiliations={includeAffiliations}&addressId={addressId}&primaryOnly={primaryOnly}
Get details of all the phones for the specified constituent (constituentId) and all its visible affiliation's phones as well or address (addressId). To exclude phones of the visible affiliations pass includeAffiliations=false. If addressId is passed, constituentId or includeAffiliations parameters are ignored. To Get the phones attached to the primary address pass primary=true.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/Phones?constituentId={constituentId}&includeAffiliations={includeAffiliations}&addressId={addressId}&primaryOnly={primaryOnly}

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).
addressId integer N
primaryOnly boolean N

Request Body

None.

No request body.

Response object type : Collection of Phone

Response object type Collection of Phone has the following properties.
Property Name Data Type Length Required Readonly Notes
Address AddressSummary N
AllowTelemarketing boolean N
Constituent Entity N
FK: T_CUSTOMER.customer_no   Resource: Constituents
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
DayEveningIndicator string N
EditIndicator boolean
Id integer N
Inactive boolean
PhoneFormatted string
PhoneNumber string N
PhoneSearch string
PhoneType PhoneTypeSummary N
UpdatedBy string N
UpdatedDateTime date N
[
  {
    "Address": {
      "Id": 1,
      "AddressType": {
        "Description": "sample string 1",
        "Id": 1,
        "Inactive": true
      }
    },
    "AllowTelemarketing": true,
    "DayEveningIndicator": "sample string 1",
    "Constituent": {
      "Id": 1
    },
    "Id": 1,
    "Inactive": true,
    "PhoneNumber": "sample string 2",
    "PhoneFormatted": "sample string 3",
    "PhoneSearch": "sample string 4",
    "PhoneType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true
    },
    "CreatedBy": "sample string 5",
    "CreateLocation": "sample string 6",
    "CreatedDateTime": "2025-04-24T05:30:27.0770574-07:00",
    "UpdatedDateTime": "2025-04-24T05:30:27.0770574-07:00",
    "UpdatedBy": "sample string 7",
    "EditIndicator": true
  },
  {
    "Address": {
      "Id": 1,
      "AddressType": {
        "Description": "sample string 1",
        "Id": 1,
        "Inactive": true
      }
    },
    "AllowTelemarketing": true,
    "DayEveningIndicator": "sample string 1",
    "Constituent": {
      "Id": 1
    },
    "Id": 1,
    "Inactive": true,
    "PhoneNumber": "sample string 2",
    "PhoneFormatted": "sample string 3",
    "PhoneSearch": "sample string 4",
    "PhoneType": {
      "Description": "sample string 1",
      "Id": 1,
      "Inactive": true
    },
    "CreatedBy": "sample string 5",
    "CreateLocation": "sample string 6",
    "CreatedDateTime": "2025-04-24T05:30:27.0770574-07:00",
    "UpdatedDateTime": "2025-04-24T05:30:27.0770574-07:00",
    "UpdatedBy": "sample string 7",
    "EditIndicator": true
  }
]
<Phones xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Phone>
    <Address>
      <AddressType>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
      </AddressType>
      <Id>1</Id>
    </Address>
    <AllowTelemarketing>true</AllowTelemarketing>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 6</CreateLocation>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDateTime>2025-04-24T05:30:27.0770574-07:00</CreatedDateTime>
    <DayEveningIndicator>sample string 1</DayEveningIndicator>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <PhoneFormatted>sample string 3</PhoneFormatted>
    <PhoneNumber>sample string 2</PhoneNumber>
    <PhoneSearch>sample string 4</PhoneSearch>
    <PhoneType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </PhoneType>
    <UpdatedBy>sample string 7</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:30:27.0770574-07:00</UpdatedDateTime>
  </Phone>
  <Phone>
    <Address>
      <AddressType>
        <Description>sample string 1</Description>
        <Id>1</Id>
        <Inactive>true</Inactive>
      </AddressType>
      <Id>1</Id>
    </Address>
    <AllowTelemarketing>true</AllowTelemarketing>
    <Constituent>
      <Id>1</Id>
    </Constituent>
    <CreateLocation>sample string 6</CreateLocation>
    <CreatedBy>sample string 5</CreatedBy>
    <CreatedDateTime>2025-04-24T05:30:27.0770574-07:00</CreatedDateTime>
    <DayEveningIndicator>sample string 1</DayEveningIndicator>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <PhoneFormatted>sample string 3</PhoneFormatted>
    <PhoneNumber>sample string 2</PhoneNumber>
    <PhoneSearch>sample string 4</PhoneSearch>
    <PhoneType>
      <Description>sample string 1</Description>
      <Id>1</Id>
      <Inactive>true</Inactive>
    </PhoneType>
    <UpdatedBy>sample string 7</UpdatedBy>
    <UpdatedDateTime>2025-04-24T05:30:27.0770574-07:00</UpdatedDateTime>
  </Phone>
</Phones>
Change Version Description Contract Old New
Parameter Changed 15.0.0 constituentId has been marked as required. Required