Pause Gift Commitment Schedule Action

Pauses a gift commitment schedule for a specified period of time.

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/pauseGiftCommitmentSchedule
Formats
JSON, XML
HTTP Methods
POST
Authentication
Authorization: Bearer token

Inputs

Input Details
endDate
Type
Date
Description
The date to resume the gift commitment schedule.
giftCommitmentScheduleId
Type
String
Description
Required.
The ID of the gift commitment schedule record to be paused.
startDate
Type
Date
Description
The date to pause the gift commitment schedule.
updateReason
Type
String
Description
The reason the gift commitment schedule is to be paused.

Outputs

Input Details
giftCommitmentScheduleIdsList
Type
String
Description
A comma-delimited list of gift commitment schedule IDs for schedules that were created or updated.

Example

Here’s a request for the Pause Gift Commitment Schedule action.

1{
2  "inputs": [
3    {
4      "giftCommitmentScheduleId": "6csNA000000YNbOYAW",
5      "startDate": "2023-08-25"
6    }
7  ]
8}

Here’s a response for the Pause Gift Commitment Schedule action.

1[
2  {
3    "actionName": "pauseGiftCommitmentSchedule",
4    "errors": null,
5    "isSuccess": true,
6    "outputValues": {
7      "giftCommitmentScheduleIdsList": [
8        "6csNA000000YNbOYAW",
9        "6csNA000000hbxuYAA"
10      ]
11    },
12    "version": 1
13  }
14]