Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Campaign
/
list
List All Campaigns
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Campaign/list \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "description": "<string>",
      "startDate": "<string>",
      "endDate": "<string>",
      "duration": "<string>",
      "canSync": true,
      "crmKey": "<string>",
      "crmKeyUrls": {},
      "applySegmentToRecurringGifts": true,
      "givingGoal": 123,
      "givingGoalFormatted": "<string>",
      "hasGivingGoal": true,
      "raisedAmount": "<string>",
      "raisedPercentage": 123,
      "totalGiftGoal": 123,
      "hasTotalGiftGoal": true,
      "totalGifts": 123,
      "totalGiftsPercentage": 123,
      "totalDonors": 123,
      "averageGiftGoal": 123,
      "averageGiftGoalFormatted": "<string>",
      "averageGiftAmount": "<string>",
      "hasAverageGiftGoal": true,
      "totalVisitors": 123,
      "conversionRate": "<string>",
      "createdDateTime": "<string>",
      "modifiedDateTime": "<string>"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

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

Field to sort by (case-insensitive). Valid options: avggiftgoal, enddate, id, startdate

Available options:
avggiftgoal,
enddate,
id,
startdate
Descending
boolean
IncludeDetails
boolean

Response

OK

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