PUT api/{context}/Fund/Save

Save a fund with all of the supplied information.

Request Information

ParameterDescriptionAdditional information
fundModel
A model representing an entire fund record.

Define this parameter in the request body.

Special Field Notes

Field NameNotes
FundID
Primary key for all Aegis CRM Funds.

Request 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>