Skip to main content
POST
List Donor Activities
Activities cover gifts, page submissions, and the other events recorded against donors. Narrow the results with selectedActivityOrigins and an optional free-text filter applied to the activity display text, and page through them with skip and take.
For the activities of a single donor, use List Donor Activities.

Authorizations

Authorization
string
header
required

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

Body

The paging and filter options, including the list of selectedActivityOrigins to include and an optional free-text filter applied to the activity display text.

Request model used to page through donor activities.

filter
string | null

A free-text search term applied to the activity display text.

skip
integer<int32>

The number of records to skip before the first record returned. Use it with take to page through the results.

take
integer<int32>

The maximum number of records to return in this page of results.

sortBy
enum<string> | null

Field to sort by (case-insensitive). Valid options: createdate, createddatetime, email, firstname, gifts, giftsum, id, lastname, modifieddatetimeutc, name, phone

Available options:
createdate,
createddatetime,
email,
firstname,
gifts,
giftsum,
id,
lastname,
modifieddatetimeutc,
name,
phone
Example:

"createdate"

descending
boolean

The direction to sort the results. Set to true to sort in descending order.

includeDetails
boolean

When true, includes the related records for each item in the response. Not every list has extra records to return, and it can slow down large result sets.

selectedActivityOrigins
enum<integer>[] | null

The activity origins to include in the results.

Available options:
0,
1,
2,
3,
4,
5

Response

OK

A page of activities with the total number that match the request.

items
object[]

The activities in this page of results.

total
integer<int32>

The total number of activities that match the request. Use it with skip and take to page through the full set.

Last modified on July 28, 2026