Skip to main content
GET
/
api
/
v2
/
webhook-events
/
summary-by-date
Get overview aggregates for webhook events by date
curl --request GET \
  --url https://api.instantly.ai/api/v2/webhook-events/summary-by-date \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "date": "2024-01-01",
      "total_events": 100,
      "successful_events": 100,
      "failed_events": 100,
      "success_rate": 50
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from
string<date>

Inclusive start of the window (YYYY-MM-DD).

Example:

"2024-01-01"

to
string<date>

Inclusive end of the window (YYYY-MM-DD).

Example:

"2024-01-31"

Response

List of webhook event KPIs grouped by date

List of webhook event KPIs grouped by date

items
object[]