Process Gift Entries Action
Processes, singly or as part of a batch, a specified gift entry ID,
creating related donor, gift transaction, gift transaction designation, and gift soft credit
records. You may also test gift entry processing to check for errors before creating related
records.
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/processGiftEntries
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
Input | Details |
---|---|
giftEntryId |
|
isDryRun |
|
Outputs
Output | Details |
---|---|
donorId |
|
giftEntryId |
|
giftProcessingErrorDetails |
|
giftProcessingStatus |
|
giftTransactionId |
|
Example
-
Here’s a request for the Process Gift Entries action for processing a gift entry.
{ "inputs": [ { "giftEntryId": "6geRM00000000GdYAI" } ] }
Here’s a response for the Process Gift Entries action for processing a gift entry.
[ { "actionName": "processGiftEntries", "errors": null, "isSuccess": true, "outputValues": { "giftProcessingStatus": "SUCCESS", "giftEntryId": "6geRM00000000GdYAI", "giftTransactionId": "6trRM00000003PJ", "giftProcessingErrorDetails": null, "donorId": "001RM000005ewDDYAY" }, "version": 1 } ]
-
Here’s a request for the Process Gift Entries action for a dry run of gift entry processing.
{ "inputs": [ { "giftEntryId": "6geRM00000000GdYAI", "isDryRun": "true", } ] }
Here’s a response for the Process Gift Entries action for a dry run of gift entry processing.
[ { "actionName": "processGiftEntries", "errors": null, "isSuccess": true, "outputValues": { "giftProcessingStatus": "New", "giftEntryId": "6geRM00000000GdYAI", "giftTransactionId": null, "giftProcessingErrorDetails": null, "donorId": null }, "version": 1 } ]