Get webhook notification history

get/api/notifications/v1/webhooks/{webhookId}/notifications

Retrieves paginated notification history for a specific webhook with optional filters for status, date range, hash, and transfer ID.

Path Parameters

  • webhookIdstringRequired
    The webhook ID

Query Parameters

  • requestobjectRequired
    Query filters for notification history
    • webhookNotificationIdstring
      Filter by specific webhook notification UUID
      Example: 550e8400-e29b-41d4-a716-446655440000
    • notificationRequestIdstring
      Filter by notification request ID (Cuid)
      Example: cjld2cjxh0000qzrmn831i7rn
    • startstring
      Start timestamp (default: now - 1 day). Supports ISO 8601 datetime (2023-01-01T00:00:00Z) or simple date (2023-01-01).
      Example: 2023-01-01T00:00:00.000Z
    • endstring
      End timestamp (default: now). Supports ISO 8601 datetime (2023-12-31T23:59:59Z) or simple date (2023-12-31).
      Example: 2023-12-31T23:59:59.000Z
    • hashstring
      Filter by transaction hash
      Example: 11256099
    • transferIdstring
      Filter by transfer ID
      Example: transfer-12345
    • statusstring
      Filter by notification status
      Example: sent
    • limitinteger<int32>Required
      Number of records to return (default 25, max 1000)
      Example: 25
      Minimum: >= 1
      Maximum: <= 1000
    • offsetinteger<int32>Required
      Number of records to skip (default 0)
      0
      Minimum: >= 0
    • startDateTimestring<date-time>Required
    • endDateTimestring<date-time>Required
    • webhookNotificationStatusstring
      Enum: PENDING PROCESSING SENT FAILED SKIPPED

200 Response

notifications array[object] required
id string <uuid>required
notificationRequestId string required
url string required
payload string required
type string required
status string required
retries integer <int32>required
createdAt string <date-time>required
updatedAt string <date-time>required
response dictionary<string, object>
coin string
walletId string
enterpriseId string
organizationId string
transferId string
hash string
total integer <int64>required
limit integer <int32>required
offset integer <int32>required

400 Response

404 Response