Skip to main content
GET
/
webhooks
/
{webhookId}
/
notifications
/
{notificationId}
/
attempts
TypeScript
const response: Promise<FireblocksResponse<NotificationAttemptsPaginatedResponse>> = fireblocks.webhooksV2.getNotificationAttempts(webhooksV2ApiGetNotificationAttemptsRequest);
{
  "data": [
    {
      "sentTime": 1625126400000,
      "duration": 130,
      "responseCode": 200,
      "failureReason": "TIMED_OUT"
    }
  ],
  "next": "eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

webhookId
string
required

The ID of the webhook to fetch

notificationId
string
required

The ID of the notification to fetch

Query Parameters

pageCursor
string

Cursor of the required page

pageSize
number
default:10

Maximum number of items in the page

Required range: 1 <= x <= 100
Example:

10

Response

OK

data
object[]
required

The data of the current page

next
string | null

The ID of the next page

Example:

"eJ0eXAiOiJKV1QiLCJhbGcOiJIUzI1NiJ9"