Manage Custom Gift Commitment Schedules Action
Creates or updates up to 15 custom gift commitment schedule records and
their associated gift transaction 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/manageCustomGiftCmtSchds
Formats: JSON
HTTP Methods: POST
Authentication: Authorization: Bearer token
Inputs
| Input | Type | Description |
|---|---|---|
| giftCommitmentSchedules | sObject | Required. A collection of gift commitment schedule records to be created or updated. |
Outputs
| Input | Type | Description |
|---|---|---|
| giftCommitmentScheduleList | String | A comma-delimited list of gift commitment schedule IDs records that the action created or updated. |
Example
Here's a request for the Manage Custom Gift Commitment Schedules action.
1{
2 "inputs": [
3 {
4 "giftCommitmentSchedules": [
5 {
6 "StartDate": "2023-08-26",
7 "PaymentMethod": "Check",
8 "Id": "6csNA000000hbx8YAA",
9 "EndDate": "2023-08-28"
10 },
11 {
12 "StartDate": "2023-08-29",
13 "PaymentMethod": "Check",
14 "Id": "6csNA000000hby4YAA",
15 "EndDate": "2023-08-30"
16 }
17 ]
18 }
19 ]
20}Here's a response for the Manage Custom Gift Commitment Schedules action.
1[
2 {
3 "actionName": "manageCustomGiftCmtSchds",
4 "errors": null,
5 "isSuccess": true,
6 "outputValues": {
7 "giftCommitmentScheduleIdsList": [
8 "6csNA000000hbx8YAA",
9 "6csNA000000hby4YAA"
10 ]
11 },
12 "version": 1
13 }
14]