Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Webhook
/
list
List All Webhooks
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Webhook/list \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": 123,
      "name": "<string>",
      "eventTypes": "<string>",
      "notificationUrl": "<string>",
      "formatDisplay": "<string>",
      "statusDisplay": "<string>",
      "securityToken": "<string>",
      "createdDate": "<string>",
      "modifiedDate": "<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: createddatetime, id

Available options:
createddatetime,
id
Descending
boolean
IncludeDetails
boolean

Response

OK

items
object[]

Represents a webhooklist model.

total
integer<int32>
Last modified on June 5, 2026