CampaignFunds Test
Finance/CampaignFunds/{campaignFundId}
Get a single Fund associated to a Campaign.
Http Verb GET
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Finance/CampaignFunds/{campaignFundId}

URI Parameters

Parameter Name Data Type Required Notes
campaignFundId integer Y

Request Body

None.

No request body.

Response object type : CampaignFund

Response object type CampaignFund has the following properties.
Property Name Data Type Length Required Readonly Notes
Campaign CampaignSummary N
FK: T_CAMPAIGN.campaign_no   Resource: Campaigns
CreatedBy string N
CreatedDateTime date N
CreateLocation string N
EditIndicator boolean
EndDateTime date N
Fund FundSummary N
FK: T_FUND.fund_no   Resource: Funds
GoalAmount decimal number N
Id integer N
StartDateTime date N
UpdatedBy string N
UpdatedDateTime date N
{
  "Id": 1,
  "Campaign": {
    "Id": 1,
    "Description": "sample string 1",
    "FYear": 1,
    "Inactive": true,
    "MembershipOrganization": {
      "Description": "sample string 1",
      "Id": 1,
      "EditIndicator": true
    }
  },
  "Fund": {
    "Description": "sample string 1",
    "Id": 1,
    "BusinessUnitId": 1,
    "Inactive": true,
    "TicketingIndicator": true,
    "EditIndicator": true,
    "ConstituencyId": 3
  },
  "StartDateTime": "2025-04-24T09:39:08.5432367-07:00",
  "EndDateTime": "2025-04-24T09:39:08.5432367-07:00",
  "GoalAmount": 1.0,
  "CreatedDateTime": "2025-04-24T09:39:08.5432367-07:00",
  "CreateLocation": "sample string 1",
  "CreatedBy": "sample string 2",
  "UpdatedDateTime": "2025-04-24T09:39:08.5432367-07:00",
  "UpdatedBy": "sample string 3",
  "EditIndicator": true
}
<CampaignFund xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Campaign>
    <Description>sample string 1</Description>
    <FYear>1</FYear>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <MembershipOrganization>
      <Description>sample string 1</Description>
      <EditIndicator>true</EditIndicator>
      <Id>1</Id>
    </MembershipOrganization>
  </Campaign>
  <CreateLocation>sample string 1</CreateLocation>
  <CreatedBy>sample string 2</CreatedBy>
  <CreatedDateTime>2025-04-24T09:39:08.5432367-07:00</CreatedDateTime>
  <EditIndicator>true</EditIndicator>
  <EndDateTime>2025-04-24T09:39:08.5432367-07:00</EndDateTime>
  <Fund>
    <BusinessUnitId>1</BusinessUnitId>
    <ConstituencyId>3</ConstituencyId>
    <Description>sample string 1</Description>
    <EditIndicator>true</EditIndicator>
    <Id>1</Id>
    <Inactive>true</Inactive>
    <TicketingIndicator>true</TicketingIndicator>
  </Fund>
  <GoalAmount>1</GoalAmount>
  <Id>1</Id>
  <StartDateTime>2025-04-24T09:39:08.5432367-07:00</StartDateTime>
  <UpdatedBy>sample string 3</UpdatedBy>
  <UpdatedDateTime>2025-04-24T09:39:08.5432367-07:00</UpdatedDateTime>
</CampaignFund>
Change Version Description Contract Old New
Property Added 15.0.0 GoalAmount has been added to CampaignFund CampaignFund CampaignFund.GoalAmount
Parameter Changed 15.0.0 campaignFundId has been marked as required. Required