> 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 # CreateDonationCampaign # Package: donations # Namespace: DonationCampaignService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/donations/donation-campaigns/create-donation-campaign.md ## Permission Scopes: Manage Donation Campaigns: SCOPE.DONATIONS.MANAGE-CAMPAIGNS ## Introduction Creates a new donation campaign. The campaign is created in an active state and can immediately accept donations. > **Note:** Other than the fields marked as required, **one or both** of the following fields must be passed on create: > + `customAmountEnabled` > + `predefinedDonationAmounts` To create multiple donation campaigns in a single call, use [Bulk Create Donation Campaigns](https://dev.wix.com/docs/rest/business-solutions/donations/donation-campaigns/bulk-create-donation-campaigns.md). --- ## REST API ### Schema ``` Method: createDonationCampaign Description: Creates a new donation campaign. The campaign is created in an active state and can immediately accept donations. > **Note:** Other than the fields marked as required, **one or both** of the following fields must be passed on create: > + `customAmountEnabled` > + `predefinedDonationAmounts` To create multiple donation campaigns in a single call, use [Bulk Create Donation Campaigns](https://dev.wix.com/docs/rest/business-solutions/donations/donation-campaigns/bulk-create-donation-campaigns.md). URL: https://www.wixapis.com/donation-campaigns/v2/donation-campaigns Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: donationCampaign, donationCampaign.name, donationCampaign.donationFrequencies, donationCampaign.campaignGoal.targetAmount Method parameters: param name: donationCampaign | 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. | required: true - name: name | type: string | description: Name of the donation campaign. | required: true - 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: coverImage | type: Image | description: Cover image for the donation campaign. - name: id | type: string | description: WixMedia image GUID. - name: url | type: string | description: Image URL. - name: altText | type: string | description: Image alt text. - 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: 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: 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 GUID. You must provide this GUID 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. | required: true - 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. | required: true - enum: - ONE_TIME: One-time donation. - WEEK: Weekly recurring donation. - MONTH: Monthly recurring donation. - YEAR: Yearly recurring donation. - 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 GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone with access to the entity, including site members and visitors. Return type: CreateDonationCampaignResponse - name: donationCampaign | type: DonationCampaign | description: Created donation campaign. - name: id | type: string | description: Donation campaign GUID. - 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: createdDate | type: string | description: Date and time the donation campaign was created. - 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: Status | 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: Campaign is actively accepting donations. - EXPIRED: Campaign has passed its `endDate` and `acceptDonationsAfterEndDate` is `false`. - GOAL_REACHED: Campaign has reached its `targetAmount` and `acceptDonationsAfterGoal` is `false`. - name: coverImage | type: Image | description: Cover image for the donation campaign. - name: id | type: string | description: WixMedia image GUID. - name: url | type: string | description: Image URL. - name: height | type: integer | description: Original image height. - name: width | type: integer | 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: 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 GUID. You must provide this GUID 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: One-time donation. - WEEK: Weekly recurring donation. - MONTH: Monthly recurring donation. - YEAR: Yearly recurring donation. - 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 GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone with access to the entity, including site members and visitors. Possible Errors: HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: EMPTY_CAMPAIGN_NAME | Description: Campaign `name` can't be empty. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NON_POSITIVE_PREDEFINED_AMOUNT | Description: All amounts in `predefinedDonationAmounts` must be greater than 0. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: DUPLICATE_PREDEFINED_AMOUNTS | Description: The `predefinedDonationAmounts` array contains duplicate amounts. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: INVALID_CUSTOM_AMOUNT_RANGE | Description: The `customAmountOptions.maximum` must be greater than `customAmountOptions.minimum`. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NON_POSITIVE_CAMPAIGN_GOAL_AMOUNT | Description: The `campaignGoal.targetAmount` must be greater than 0. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NO_PAYMENT_DEFINITION | Description: Either `customAmountEnabled` must be set to `true` or at least one amount must be provided in `predefinedDonationAmounts`. HTTP Code: 500 | Status Code: INTERNAL | Application Code: SITE_CURRENCY_UNAVAILABLE | Description: Site currency settings are temporarily unavailable. Try again later. ``` ### Examples ### Create Donation Campaign Creates a donation campaign with all writable fields ```curl curl -X POST \ 'https://www.wixapis.com/donation-campaigns/v2/donation-campaigns' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "donationCampaign": { "name": "Save the Ocean Campaign", "archived": false, "coverImage": { "id": "image-12345", "url": "https://example.com/ocean-image.jpg", "width": 200, "height": 200, "altText": "Ocean conservation image" }, "customAmountEnabled": true, "customAmountOptions": { "minimum": {"amount": "5.00"}, "maximum": {"amount": "5000.00"} }, "predefinedDonationAmounts": [ { "id": "5eb95ed4-5dbc-40fb-a2e2-1f063ef204bd", "price": {"amount": "25.00"}, "description": "Help clean 1 square meter of ocean" }, { "id": "7a3c1886-783b-49bd-bfae-044e734f5cac", "price": {"amount": "100.00"}, "description": "Support marine life rescue for a day" } ], "campaignGoal": { "targetAmount": {"amount": "50000.00"}, "endDate": "2024-12-31T23:59:59Z", "acceptDonationsAfterEndDate": false, "acceptDonationsAfterGoal": true }, "commentsEnabled": true, "donationFrequencies": ["ONE_TIME", "MONTH", "YEAR"], "askDonorCoverFee": true } }' ``` ### // @Create Donation Campaign @description: Creates a donation campaign with all writable fields import { donationCampaigns } from "@wix/donations"; ```curl const donationCampaign = { name: "Save the Ocean Campaign", archived: false, coverImage: { id: "image-12345", url: "https://example.com/ocean-image.jpg", width: 200, height: 200, altText: "Ocean conservation image", }, customAmountEnabled: true, customAmountOptions: { minimum: { amount: "5.00" }, maximum: { amount: "5000.00" }, }, predefinedDonationAmounts: [ { _id: "5eb95ed4-5dbc-40fb-a2e2-1f063ef204bd", price: { amount: "25.00" }, description: "Help clean 1 square meter of ocean", }, { _id: "7a3c1886-783b-49bd-bfae-044e734f5cac", price: { amount: "100.00" }, description: "Support marine life rescue for a day", }, ], campaignGoal: { targetAmount: { amount: "50000.00" }, endDate: "2024-12-31T23:59:59Z", acceptDonationsAfterEndDate: false, acceptDonationsAfterGoal: true, }, commentsEnabled: true, donationFrequencies: ["ONE_TIME", "MONTH", "YEAR"], askDonorCoverFee: true, }; ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.donations.DonationCampaignService.createDonationCampaign(donationCampaign) Description: Creates a new donation campaign. The campaign is created in an active state and can immediately accept donations. > **Note:** Other than the fields marked as required, **one or both** of the following fields must be passed on create: > + `customAmountEnabled` > + `predefinedDonationAmounts` To create multiple donation campaigns in a single call, use [Bulk Create Donation Campaigns](https://dev.wix.com/docs/rest/business-solutions/donations/donation-campaigns/bulk-create-donation-campaigns.md). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: donationCampaign, donationCampaign.name, donationCampaign.donationFrequencies, donationCampaign.campaignGoal.targetAmount Method parameters: param name: donationCampaign | 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. | required: true - name: name | type: string | description: Name of the donation campaign. | required: true - 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: coverImage | type: string | description: Cover image for the donation campaign. - 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: 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: 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 GUID. You must provide this GUID 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. | required: true - name: endDate | type: Date | 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. | required: true - enum: - ONE_TIME: One-time donation. - WEEK: Weekly recurring donation. - MONTH: Monthly recurring donation. - YEAR: Yearly recurring donation. - 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 GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone with access to the entity, including site members and visitors. Return type: PROMISE - name: _id | type: string | description: Donation campaign GUID. - 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: _createdDate | type: Date | description: Date and time the donation campaign was created. - name: _updatedDate | type: Date | 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: Status | 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: Campaign is actively accepting donations. - EXPIRED: Campaign has passed its `endDate` and `acceptDonationsAfterEndDate` is `false`. - GOAL_REACHED: Campaign has reached its `targetAmount` and `acceptDonationsAfterGoal` is `false`. - name: coverImage | type: string | description: Cover image for the donation campaign. - 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: 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 GUID. You must provide this GUID 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: Date | 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: One-time donation. - WEEK: Weekly recurring donation. - MONTH: Monthly recurring donation. - YEAR: Yearly recurring donation. - 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 GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone with access to the entity, including site members and visitors. Possible Errors: HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: EMPTY_CAMPAIGN_NAME | Description: Campaign `name` can't be empty. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NON_POSITIVE_PREDEFINED_AMOUNT | Description: All amounts in `predefinedDonationAmounts` must be greater than 0. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: DUPLICATE_PREDEFINED_AMOUNTS | Description: The `predefinedDonationAmounts` array contains duplicate amounts. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: INVALID_CUSTOM_AMOUNT_RANGE | Description: The `customAmountOptions.maximum` must be greater than `customAmountOptions.minimum`. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NON_POSITIVE_CAMPAIGN_GOAL_AMOUNT | Description: The `campaignGoal.targetAmount` must be greater than 0. HTTP Code: 400 | Status Code: INVALID_ARGUMENT | Application Code: NO_PAYMENT_DEFINITION | Description: Either `customAmountEnabled` must be set to `true` or at least one amount must be provided in `predefinedDonationAmounts`. HTTP Code: 500 | Status Code: INTERNAL | Application Code: SITE_CURRENCY_UNAVAILABLE | Description: Site currency settings are temporarily unavailable. Try again later. ``` ### Examples ### createDonationCampaign ```javascript import { donationCampaigns } from '@wix/donations'; async function createDonationCampaign(donationCampaign) { const response = await donationCampaigns.createDonationCampaign(donationCampaign); }; ``` ### createDonationCampaign (with elevated permissions) ```javascript import { donationCampaigns } from '@wix/donations'; import { auth } from '@wix/essentials'; async function myCreateDonationCampaignMethod(donationCampaign) { const elevatedCreateDonationCampaign = auth.elevate(donationCampaigns.createDonationCampaign); const response = await elevatedCreateDonationCampaign(donationCampaign); } ``` ### createDonationCampaign (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { donationCampaigns } from '@wix/donations'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { donationCampaigns }, // Include the auth strategy and host as relevant }); async function createDonationCampaign(donationCampaign) { const response = await myWixClient.donationCampaigns.createDonationCampaign(donationCampaign); }; ``` ---