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.
Process Gift Commitment Action
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/processGiftCommitment
Formats: JSON, XML
HTTP Methods: POST
Authentication: Authorization: Bearer token
Inputs
| Input | Type | Description |
|---|---|---|
| giftCommitmentId | String | Required. The ID of the gift commitment record to be processed. |
Outputs
| Input | Type | Description |
|---|---|---|
| giftCommitmentProcessingStatus | String | The status of the gift commitment record after it is processed. |
Example
Here's a request for the Process Gift Commitment action.
1{
2 "inputs": [
3 {
4 "giftCommitmentId": "6gcNA000000PeKhYAK"
5 }
6 ]
7}Here's a response for the Process Gift Commitment action.
1[
2 {
3 "actionName": "processGiftCommitment",
4 "errors": null,
5 "isSuccess": true,
6 "outputValues": null,
7 "version": 1
8 }
9]