Skip to main content
POST
https://prod-api.raisedonors.com
/
api
/
Zapier
/
subscribe
Subscribe to Zapier Webhook
curl --request POST \
  --url https://prod-api.raisedonors.com/api/Zapier/subscribe \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "targetUrl": "<string>",
  "eventType": "<string>"
}
'
{
  "id": 123
}

Authorizations

Authorization
string
header
required

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

Body

The subscription request containing target URL and event type.

Request model for Zapier webhook subscription.

targetUrl
string<uri>
required

Gets or sets the target URL where Zapier will receive webhook notifications.

Minimum string length: 1
eventType
string
required

Gets or sets the event type to subscribe to (e.g., "Gift_Added", "Donor_Modified").

Minimum string length: 1

Response

OK

Response model for Zapier webhook subscription.

id
integer<int64>

Gets or sets the webhook ID.

Last modified on June 5, 2026