Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
FundraisingConfig
Parent Type
File Suffix and Directory Location
FundraisingConfig components have the suffix .fundraisingConfig and are stored in the fundraisingConfigs folder.
Version
FundraisingConfig components are available in API version 58.0 and later.
Special Access Rules
Your org must have Fundraising Access license as a part of the Nonprofit Cloud to access this object.
Fields
| Field Name | Description |
|---|---|
| donorMatchingMethod |
|
| failedTransactionCount |
|
| householdSoftCreditRole |
|
| installmentExtDayCount |
|
| isHshldSoftCrAutoCrea |
|
| lapsedUnpaidTrxnCount |
|
| masterLabel |
|
| shouldClosePaidRcrCmt |
|
| shouldCreateRcrSchdTrxn |
|
| utmCampaignSrcObj |
|
| utmCampaignSrcObjField |
|
| utmMediumSrcObj |
|
| utmMediumSrcObjField |
|
| utmSourceSrcObj |
|
| utmSourceSrcObjField |
|
Declarative Metadata Sample Definition
The following is an example of a FundraisingConfig component.
1<?xml version="1.0" encoding="UTF-8"?>
2<FundraisingConfig xmlns="http://soap.sforce.com/2006/04/metadata">
3 <lapsedUnpaidTrxnCount>5</lapsedUnpaidTrxnCount>
4 <householdSoftCreditRole>Admin</householdSoftCreditRole>
5 <isHshldSoftCrAutoCrea>true</isHshldSoftCrAutoCrea>
6 <installmentExtDayCount>7</installmentExtDayCount>
7 <donorMatchingMethod>No_Matching</donorMatchingMethod>
8 <donorExternalIdField>TestExtId__c</donorExternalIdField>
9 <failedTransactionCount>12</failedTransactionCount>
10 <outreachSourceCodeGenFmla>OutreachSourceCodeGenFmla</outreachSourceCodeGenFmla>
11 <shouldCreateRcrSchdTrxn>true</shouldCreateRcrSchdTrxn>
12 <shouldClosePaidRcrCmt>false</shouldClosePaidRcrCmt>
13 <masterLabel>MasterLabel</masterLabel>
14 <utmMediumSrcObj>UTM Medium Src Obj</utmMediumSrcObj>
15 <utmMediumSrcObjField>UTM Medium Src Obj Field</utmMediumSrcObjField>
16 <utmSourceSrcObj>UTM Source Src Obj</utmSourceSrcObj>
17 <utmSourceSrcObjField>UTM Source Src Obj Field</utmSourceSrcObjField>
18 <utmCampaignSrcObj>UTM Campaign Src Obj</utmCampaignSrcObj>
19 <utmCampaignSrcObjField>UTM Campaign Src Obj Field</utmCampaignSrcObjField>
20</FundraisingConfig>The following is an example package.xml that references the previous definition.
1<?xml version="1.0" encoding="UTF-8"?>
2<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3 <types>
4 <members>*</members>
5 <name>FundraisingConfig</name>
6 </types>
7 <version>64.0</version>
8</Package>