Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Donor
/
{donorId}
/
donor-fields
List Donor Custom Fields
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Donor/{donorId}/donor-fields \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": 123,
      "customCollectionId": 123,
      "customCollectionName": "<string>",
      "customFieldId": 123,
      "customFieldName": "<string>",
      "value": "<string>",
      "entityTypeDisplayName": "<string>",
      "responseType": "<string>",
      "createdDate": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

donorId
integer<int64>
required

The ID of the donor.

Query Parameters

CollectionSkip
integer<int32>

Gets or sets the collection skip.

Filter
string
Skip
integer<int32>
Take
integer<int32>
SortBy
enum<string>

Field to sort by (case-insensitive). Valid options: createddate, createddatetimeutc, customfield, customfieldname, id, modifieddatetimeutc, name, response, type, value

Available options:
createddate,
createddatetimeutc,
customfield,
customfieldname,
id,
modifieddatetimeutc,
name,
response,
type,
value
Descending
boolean
IncludeDetails
boolean

Response

OK

items
object[]
total
integer<int32>
Last modified on June 5, 2026