Newer Version Available
Update Processed Gift Entries Action
Updates the status of a specified gift entry record that is already
processed. If the processing fails, the failure reason is updated.
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/updateProcessedGiftEntries
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| donorId |
|
| giftEntryId |
|
| giftProcessingErrorDetails |
|
| giftProcessingStatus |
|
| giftTransactionId |
|
Outputs
| Field | Details |
|---|---|
| giftEntryId |
|
Example
-
Here’s a request for the Update Processed Gift Entries action.
1{ 2 "inputs": [ 3 { 4 "donorId": "001RM000005ewDDYAY", 5 "giftEntryId": "6geRM00000000GdYAI", 6 "giftProcessingErrorDetails": null, 7 "giftProcessingStatus": "SUCCESS", 8 "giftTransactionId": "6trRM00000003PJ" 9 } 10 ] 11}Here’s a response for the Update Processed Gift Entries action.
1[ 2 { 3 "actionName": "updateProcessedGiftEntries", 4 "errors": null, 5 "isSuccess": true, 6 "outputValues": { 7 "giftEntryId": "6geRM00000000GdYAI" 8 }, 9 "version": 1 10 } 11]