> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Donation Campaigns # Type: Donation Campaign Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/donations/donation-campaigns/donation-campaign-object.md ## Description: A donation campaign represents a fundraising initiative that allows collecting donations for a specific cause or goal. Campaigns can be configured with various donation options, including one-time and recurring payments, predefined amounts, and campaign goals. Use the Donation Campaigns API to create and manage donation campaigns on your site. ## Schema: ```json Type: Donation Campaign Object | type: DonationCampaign Description: A donation campaign represents a fundraising initiative that allows collecting donations for a specific cause or goal. Campaigns can be configured with various donation options, including one-time and recurring payments, predefined amounts, and campaign goals. Use the Donation Campaigns API to create and manage donation campaigns on your site. - name: id | type: string | description: Donation campaign ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the donation campaign is updated. To prevent conflicting changes, the current `revision` must be specified when updating the donation campaign. Ignored when creating a donation campaign. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the donation campaign was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the donation campaign was last updated. - name: name | type: string | description: Name of the donation campaign. - name: archived | type: boolean | description: Whether the donation campaign is archived and hidden from site visitors. Archived campaigns can't accept donations. Default: `false` - name: status | type: string | description: Current status of the donation campaign. The status is automatically calculated based on campaign settings and current progress: - `COLLECTING`: Campaign is active and accepting donations - `EXPIRED`: Campaign has passed its end date and `acceptDonationsAfterEndDate` is `false` - `GOAL_REACHED`: Campaign has reached its target amount and `acceptDonationsAfterGoal` is `false` enum: COLLECTING, EXPIRED, GOAL_REACHED - name: coverImage | type: Image | description: Cover image for the donation campaign. - name: id | type: string | description: WixMedia image ID. - name: url | type: string | description: Image URL. - name: height | type: number | description: Original image height. - name: width | type: number | description: Original image width. - name: altText | type: string | description: Image alt text. - name: filename | type: string | description: Image filename. - name: customAmountEnabled | type: boolean | description: Whether donors can specify their own donation amount. If custom amounts are disabled, at least one predefined amount must be provided. Default: `false` - name: value | type: boolean | description: - name: customAmountOptions | type: CustomAmountOptions | description: Optional settings for custom donation amounts. - name: minimum | type: MultiCurrencyPrice | description: Minimum donation amount. - name: amount | type: string | description: Amount. - name: convertedAmount | type: string | description: Converted amount. - name: formattedAmount | type: string | description: Amount formatted with currency symbol. - name: formattedConvertedAmount | type: string | description: Converted amount formatted with currency symbol. - name: maximum | type: MultiCurrencyPrice | description: Maximum donation amount. - name: predefinedDonationAmounts | type: Array | description: Predefined donation amounts. Each amount can include an optional description explaining its impact. For example, "Feed 5 families for a week". - name: id | type: string | description: Predefined amount ID. You must provide this ID when creating or updating campaigns. - name: price | type: MultiCurrencyPrice | description: Donation amount. Currently supports the site's default currency only. - name: description | type: string | description: Description explaining the impact of this donation amount. For example, "Feed 5 families for a week" or "Plant 10 trees". - name: campaignGoal | type: CampaignGoal | description: Campaign fundraising goal. - name: targetAmount | type: MultiCurrencyPrice | description: Target fundraising amount. Currently supports the site's default currency only. - name: endDate | type: string | description: Campaign end date in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. The behavior after this date is controlled by `acceptDonationsAfterEndDate`. - name: acceptDonationsAfterEndDate | type: boolean | description: Whether donations are accepted after `endDate`. This field is ignored if `endDate` is not set. Default: `false` - name: acceptDonationsAfterGoal | type: boolean | description: Whether donations are accepted after reaching `targetAmount`. Default: `true` - name: commentsEnabled | type: boolean | description: Whether donors can add comments to their donations. Default: `false` - name: donationFrequencies | type: Array | description: Donation frequencies available for this campaign. At least one frequency must be specified. enum: ONE_TIME, WEEK, MONTH, YEAR - name: askDonorCoverFee | type: boolean | description: Whether to ask donors during checkout if they want to add 2.9% to their donation to cover fees. When `false`, fees are deducted from the donation amount, meaning the campaign receives less than the donor's original contribution. When `true`, donors are presented with an option in the checkout UI to add a 2.9% fee on top of their donation. This fee helps offset processing costs, ensuring more of the original donation reaches the campaign. The donor always has the choice — they are never automatically charged the fee. For recurring donations, if the donor opts to cover fees, the 2.9% fee is applied to each recurring payment (not just the first one). > **Notes:** > + The 2.9% rate is fixed and cannot be customized by campaign owners. > + This feature works with all payment methods and currencies. Default: `false` - name: extendedFields | type: ExtendedFields | description: Custom field data for the program definition object. [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions.md) must be configured in the app dashboard before they can be accessed with API calls. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags assigned to this donation campaign. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, typically restricted from site members and visitors. - name: tagIds | type: Array | description: List of tag IDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone with access to the entity, including site members and visitors. ```