Webhooks
Event Delivery Log
Retrieves a list of tracked events for a specific store based on the x-store-id header. Supports filtering by event name and pagination.
Use case: Useful for auditing and reviewing the events tracked, aiding in performance monitoring and data analysis.
Query Parameters:
limit(integer, optional): The maximum number of events to return.event(string, optional): The name of the event to filter by.
Responses:
- 200: A list of tracked events.
GET
Event Delivery Log
Previous
Track an EventTracks a custom event for analytics purposes. Requires the `x-store-id` header for identifying the store. Accepts an `eventName`, `eventData`, `url`, and `referrer`. Utilizes Umami for tracking and groups URLs under the store for Blink's dashboard.
**Use case:** This endpoint allows for tracking custom events for a store, useful in analyzing customer interactions, marketing effectiveness, and performance metrics.
**Request Body:**
- `eventName` (string, required): The name of the event.
- `eventData` (object, optional): Additional data related to the event.
**Responses:**
- **200:** Event tracked successfully.
Next
Event Delivery Log