Skip to main content
POST
List Activities for a Donor
Send the paging options in the body, along with selectedActivityOrigins to limit which kinds of activity come back and an optional filter applied to the activity display text.
For activities across all donors, use List Donor Activities on the Activity resource.

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 pagination request.

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