This endpoint retrieves a list of events that have occurred for a customer's account, often related to webhook notifications. You can filter events by subscription_id and/or a time range query parameter (after).
It returns a paginated list of Event objects, each containing details about the event and any delivery attempts if it's a webhook event.
Security
CodeBearer(Required scopes: subscriptions.read)
- Production serverhttps://api.business.jiko.io/api/v1/events/
- Sandbox serverhttps://customer-api.sandbox-api.jikoservices.com/api/v1/events/
curl -i -X GET \
'https://api.business.jiko.io/api/v1/events/?subscription_id=497f6eca-6276-4993-bfeb-53cbbbba6f08&cursor=&limit=100&after=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "prev_page": "string", "next_page": "string", "items": [ { … } ], "object_type": "CursorList" }