Skip to main content
POST
https://prod-api.raisedonors.com
/
api
/
Donor
/
{id}
/
activity
Create a Donor Activity
curl --request POST \
  --url https://prod-api.raisedonors.com/api/Donor/{id}/activity \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "referenceId": 123
}
'
{
  "id": 123,
  "display": "<string>",
  "createdDate": "<string>",
  "createdTime": "<string>",
  "donorId": 123,
  "donorAddressId": 123,
  "donorContactMethodId": 123,
  "giftId": 123,
  "emailSubject": "<string>",
  "emailFromName": "<string>",
  "emailFromEmail": "<string>",
  "emailTemplateType": 123,
  "emailTemplateId": 123
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Path Parameters

id
integer<int64>
required

The ID of the donor.

Body

The donor activity request.

Represents a donoractivity request.

referenceId
integer<int64>

Gets or sets the reference identifier.

activityOrigin
enum<integer>

Gets or sets the activity origin.

Available options:
0,
1,
2,
3,
4,
5
activityType
enum<integer>

Gets or sets the activity type.

Available options:
0,
1,
2,
3,
4,
5
activityAction
enum<integer>

Gets or sets the activity action.

Available options:
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21

Response

OK

Represents a donoractivity model.

id
integer<int64>

Gets or sets the identifier.

display
string | null

Gets or sets the display.

activityOrigin
enum<integer>

Gets or sets the activity origin.

Available options:
0,
1,
2,
3,
4,
5
activityType
enum<integer>

Gets or sets the activity type.

Available options:
0,
1,
2,
3,
4,
5
createdDate
string | null

Gets or sets the created date.

createdTime
string | null

Gets or sets the created time.

donorId
integer<int64> | null

Gets or sets the donor identifier.

donorAddressId
integer<int64> | null

Gets or sets the donoraddress identifier.

donorContactMethodId
integer<int64> | null

Gets or sets the donorcontactmethod identifier.

giftId
integer<int64> | null

Gets or sets the gift identifier.

emailSubject
string | null
emailFromName
string | null
emailFromEmail
string | null
emailTemplateType
integer<int32> | null
emailTemplateId
integer<int64> | null
Last modified on June 5, 2026