menu
Count webhook events
Counts webhook delivery log entries, honoring the same status and event filters as the list.
Endpoint
GET https://api.sendstreak.com/v2/accounts/{accountId}/webhook-events/count
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
Query parameters
| Parameter | Type | Description |
|---|---|---|
status | one of: failed, pending, succeeded | |
event | string |
Response
The matching count.
{
"count": 42
}
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/webhook-events/count' \
--header 'Authorization: Bearer YOUR_API_TOKEN'