Skip to main content
GET
Get a Webhook Log
Use it to compare what Raise sent against what your endpoint received.

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

id
integer<int64>

The unique identifier of the log entry.

webhookId
integer<int64>

The unique identifier of the webhook the delivery was sent from.

contextId
integer<int64>

The unique identifier of the record the event was about, such as a gift or donor.

eventType
enum<integer>

The event the delivery was for.

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

The display name of the event.

serverResponse
string | null

The response returned by your endpoint.

success
string | null

Whether the delivery succeeded.

httpStatusCode
string | null

The HTTP status code returned by your endpoint.

createdDate
string | null
read-only

The date the log entry was created.

modifiedDate
string | null
read-only

The date the log entry was last modified.

webhookName
string | null

The name of the webhook the delivery was sent from.

payLoad
string | null

The payload Raise sent to your endpoint.

Last modified on July 28, 2026