List webhook event history in ascending created_at order. To avoid advancing cursors past rows from still-open transactions, events are withheld from this endpoint until they are at least 30 seconds old. Narrow the feed with either type (exact event types) or object (every event for an object family); supplying both returns a 400. Cursors are filter-agnostic, so changing filters mid-pagination yields a different slice of history.
Security
form_session or user_session or component_session or component_token or api_token
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/events
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/events
- form_session
- user_session
- component_session
- component_token
- api_token
curl -i -X GET \
'https://docs.onboarded.com/_mock/openapi/api/v1/events?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNi0wNi0yNVQyMDoxMjozNC41NjdaIiwiaWQiOjEyMzQ1fQ&limit=string&created_at_gt=string&created_at_lt=string&type=job.created&object=job' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
- EventCursor
- null
{ "data": [ { … } ], "next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wNi0yNVQyMDoxMjozNC41NjdaIiwiaWQiOjEyMzQ1fQ", "has_more": true }