GET api/{context}/fund/ID/{text}

Retrieve a Fund by its ID

Request Information

ParameterDescriptionAdditional information
text
The FundID of the fund

Define this parameter in the request URI.

Special Field Notes

Field NameNotes
FundID
Primary key for all Aegis CRM Funds.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "FundID": "sample string 1",
  "Name": "sample string 2",
  "Description": "sample string 3",
  "Goal": 4.0,
  "Active": true,
  "NonTaxDeductible": true,
  "Restricted": true,
  "WebFund": true,
  "GiftinKind": true
}

application/xml, text/xml

Sample:
<FundModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDS.Web.WebApi.Models">
  <Active>true</Active>
  <Description>sample string 3</Description>
  <FundID>sample string 1</FundID>
  <GiftinKind>true</GiftinKind>
  <Goal>4</Goal>
  <Name>sample string 2</Name>
  <NonTaxDeductible>true</NonTaxDeductible>
  <Restricted>true</Restricted>
  <WebFund>true</WebFund>
</FundModel>