Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Webhook
/
{id}
/
log
/
{logId}
Get a Webhook Log
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Webhook/{id}/log/{logId} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "webhookId": 123,
  "contextId": 123,
  "eventTypeDisplay": "<string>",
  "serverResponse": "<string>",
  "success": "<string>",
  "httpStatusCode": "<string>",
  "createdDate": "<string>",
  "modifiedDate": "<string>",
  "webhookName": "<string>",
  "payLoad": "<string>"
}

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 webhook.

logId
integer<int64>
required

The ID of the log.

Response

OK

Represents a webhooklog model.

id
integer<int64>

Gets or sets the identifier.

webhookId
integer<int64>

Gets or sets the webhook identifier.

contextId
integer<int64>

Gets or sets the context identifier.

eventType
enum<integer>

Gets or sets the event type.

Available options:
10,
11,
12,
20,
21,
22,
30,
31,
32,
40,
41,
42,
50,
51,
52
eventTypeDisplay
string | null

Gets or sets the event type display.

serverResponse
string | null

Gets or sets the server response.

success
string | null

Gets or sets the success.

httpStatusCode
string | null

Gets or sets the http status code.

createdDate
string | null
read-only

Gets or sets the created date.

modifiedDate
string | null
read-only

Gets or sets the modified date.

webhookName
string | null

Gets or sets the webhook name.

payLoad
string | null

Gets or sets the pay load.

Last modified on June 5, 2026