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.

Manage Gift Transaction Designations Action

Creates and manages Gift Transaction Designation records for a gift transaction.

This action is available in API version 59.0 and later for users in orgs where the Fundraising Access license is enabled and the Fundraising User system permission is assigned.

Supported REST HTTP Methods

URI: /services/data/vXX.X/actions/standard/manageGiftTrxnDesignations

Formats: JSON, XML

HTTP Methods: POST

Authentication: Authorization: Bearer token

Inputs

Input Type Description
giftTransactionDesignations sObject Required. A collection of Gift Transaction Designation record IDs that are to be modified or deleted.
recordId ID Required. The record for which the Gift Transaction Designation record is created. For example, Gift Transaction.

Outputs

None.

Example

Here's a request for the Manage Gift Transaction Designations action.

1{
2  "inputs": [
3    {
4      "giftTransactionDesignations": [
5        {
6          "GiftDesignationId": "6gdRM0000004CDAYA2",
7          "Percent": 100,
8          "Amount": 76
9        }
10      ]
11    }
12  ],
13  "recordId": "6trRM00000003PJYAY"
14}

Here's a response for the Manage Gift Transaction Designations action.

1[
2  {
3    "actionName": "manageGiftTrxnDesignations",
4    "errors": null,
5    "isSuccess": true,
6    "outputValues": null,
7    "version": 1
8  }
9]