Save a fund with all of the supplied information.
| Parameter | Description | Additional information |
|---|---|---|
| fundModel | A model representing an entire fund record. |
Define this parameter in the request body. |
| Field Name | Notes |
|---|---|
| FundID | Primary key for all Aegis CRM Funds. |
{
"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
}
<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>