Funds Test
Finance/Funds/{fundId}
Get details of a specific fund
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Finance/Funds/{fundId}

URI Parameters

Parameter Name Data Type Required Notes
fundId integer Y

Request Body

None.

No request body.

Response object type : Fund

Response object type Fund has the following properties.
Property Name Data Type Length Required Readonly Notes
BusinessUnitId integer N
FK: TR_BU.id   Resource: BusinessUnits
ConstituencyId integer N
FK: TR_CONSTITUENCY.id   Resource: ConstituencyTypes
ControlGroup ControlGroupSummary N
FK: TR_CONTROL_GROUP.id   Resource: ControlGroups
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
Description string N
EditIndicator boolean N readonly
GiftAidTypeId integer N
FK: TR_GIFTAID_TYPE.id   Resource: GiftAidTypes
Id integer N
Inactive boolean N
TicketingIndicator boolean N
UpdatedBy string N
UpdatedDateTime date N
{
  "BusinessUnitId": 1,
  "ConstituencyId": 1,
  "ControlGroup": {
    "Description": "sample string 1",
    "Id": 2,
    "Inactive": true
  },
  "CreatedDateTime": "2025-04-24T09:39:08.7308403-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "Description": "sample string 3",
  "Id": 1,
  "GiftAidTypeId": 1,
  "Inactive": true,
  "UpdatedDateTime": "2025-04-24T09:39:08.7308403-07:00",
  "UpdatedBy": "sample string 4",
  "TicketingIndicator": true,
  "EditIndicator": true
}
<Fund xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <BusinessUnitId>1</BusinessUnitId>
  <ConstituencyId>1</ConstituencyId>
  <ControlGroup>
    <Description>sample string 1</Description>
    <Id>2</Id>
    <Inactive>true</Inactive>
  </ControlGroup>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T09:39:08.7308403-07:00</CreatedDateTime>
  <Description>sample string 3</Description>
  <EditIndicator>true</EditIndicator>
  <GiftAidTypeId>1</GiftAidTypeId>
  <Id>1</Id>
  <Inactive>true</Inactive>
  <TicketingIndicator>true</TicketingIndicator>
  <UpdatedBy>sample string 4</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:39:08.7308403-07:00</UpdatedDateTime>
</Fund>
Change Version Description Contract Old New
Parameter Changed 15.0.0 fundId has been marked as required. Required