ProgramListings Test
CRM/ProgramListings/{programListingId}
Get details of a program listing.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/CRM/ProgramListings/{programListingId}

URI Parameters

Parameter Name Data Type Required Notes
programListingId integer Y

Request Body

None.

No request body.

Response object type : ProgramListing

Response object type ProgramListing has the following properties.
Property Name Data Type Length Required Readonly Notes
Constituent Entity N
FK: T_CUSTOMER.customer_no   Resource: Constituents
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
DonationLevel DonationLevelSummary N
FK: TR_DONATION_LEVEL.id   Resource: DonationLevels
EditIndicator boolean
Id integer N
ProgramName string N
ProgramType ProgramType N
FK: T_PROGRAM.program_no   Resource: Programs
SortName string N
UpdatedBy string N
UpdatedDateTime date N
{
  "Id": 1,
  "CreatedDateTime": "2025-04-24T04:33:22.3271904-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T04:33:22.3271904-07:00",
  "UpdatedBy": "sample string 3",
  "Constituent": {
    "Id": 1
  },
  "DonationLevel": {
    "Description": "sample string 1",
    "Id": 1,
    "Inactive": true
  },
  "ProgramType": {
    "Description": "sample string 1",
    "Id": 1
  },
  "ProgramName": "sample string 4",
  "SortName": "sample string 5",
  "EditIndicator": true
}
<ProgramListing xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Constituent>
    <Id>1</Id>
  </Constituent>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T04:33:22.3271904-07:00</CreatedDateTime>
  <DonationLevel>
    <Description>sample string 1</Description>
    <Id>1</Id>
    <Inactive>true</Inactive>
  </DonationLevel>
  <EditIndicator>true</EditIndicator>
  <Id>1</Id>
  <ProgramName>sample string 4</ProgramName>
  <ProgramType>
    <Description>sample string 1</Description>
    <Id>1</Id>
  </ProgramType>
  <SortName>sample string 5</SortName>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T04:33:22.3271904-07:00</UpdatedDateTime>
</ProgramListing>
Change Version Description Contract Old New
Parameter Changed 15.0.0 programListingId has been marked as required. Required