Skip to main content
POST
/
api
/
PledgeV2
cURL
curl --request POST \
  --url https://api.example.com/api/PledgeV2 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "amountPledged": 123,
  "pledgeDate": "2023-11-07T05:31:56Z",
  "expectedFulfillmentDate": "2023-11-07T05:31:56Z",
  "contactId": 123,
  "customFields": [
    {
      "name": "<string>",
      "dataType": "<string>",
      "value": "<string>",
      "displayName": "<string>"
    }
  ],
  "currencyCode": "<string>",
  "segmentId": 123,
  "projectId": 123,
  "giftAskId": 123,
  "isPrivate": true,
  "payments": [
    {
      "expectedPaymentDate": "2023-11-07T05:31:56Z",
      "expectedAmount": 123
    }
  ]
}
'
{
  "customFields": [
    {
      "name": "<string>",
      "dataType": "<string>",
      "value": "<string>",
      "displayName": "<string>"
    }
  ],
  "id": 123,
  "contactId": 123,
  "amountPledged": 123,
  "pledgeDate": "2023-11-07T05:31:56Z",
  "expectedFulfillmentDate": "2023-11-07T05:31:56Z",
  "createDateTimeUtc": "2023-11-07T05:31:56Z",
  "createdByUser": "<string>",
  "modifiedDateTimeUtc": "2023-11-07T05:31:56Z",
  "modifiedByUser": "<string>",
  "segmentId": 123,
  "segment": "<string>",
  "projectId": 123,
  "project": "<string>",
  "giftAskId": 123,
  "isPrivate": true,
  "payments": [
    {
      "id": 123,
      "expectedPaymentDate": "2023-11-07T05:31:56Z",
      "expectedAmount": 123,
      "giftId": 123,
      "actualAmount": 123
    }
  ]
}

Body

amountPledged
number<double>
required
frequency
enum<integer>
required
Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
10
pledgeDate
string<date-time>
required
expectedFulfillmentDate
string<date-time>
required
contactId
integer<int32>
required
customFields
object[] | null
currencyCode
string | null
segmentId
integer<int32> | null
projectId
integer<int32> | null
giftAskId
integer<int32> | null
isPrivate
boolean
payments
object[] | null

Response

OK

customFields
object[] | null
id
integer<int32>
contactId
integer<int32>
amountPledged
number<double>
frequency
enum<integer>
Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
10
pledgeDate
string<date-time>
expectedFulfillmentDate
string<date-time>
createDateTimeUtc
string<date-time>
read-only
createdByUser
string | null
read-only
modifiedDateTimeUtc
string<date-time>
read-only
modifiedByUser
string | null
read-only
segmentId
integer<int32> | null
segment
string | null
projectId
integer<int32> | null
project
string | null
giftAskId
integer<int32> | null
isPrivate
boolean
status
enum<integer>
Available options:
0,
1,
2,
3,
4
payments
object[] | null
Last modified on June 5, 2026