1. OpenAPI (Demo)
  2. Analytics
  3. List product events
ReadmeGitHub
  • Platform API overview
  • Quickstart
  • POSTCreate a member session
  • POSTRefresh a member session
  • DELETERevoke a member session
  • GETList organizations
  • POSTCreate an organization
  • GETGet an organization
  • PATCHUpdate an organization
  • GETList organization members
  • POSTInvite an organization member
  • DELETERemove an organization member
  • PATCHUpdate a member role
  • GETList projects
  • POSTCreate a project
  • GETGet a project
  • DELETEArchive a project
  • PATCHUpdate a project
  • GETList project environments
  • POSTCreate a project environment
  • GETList project documents
  • POSTCreate a project document
  • GETGet a document
  • DELETEArchive a document
  • PATCHUpdate a document
  • POSTPublish a document
  • GETList contacts
  • POSTCreate a contact
  • GETGet a contact
  • DELETEDelete a contact
  • PATCHUpdate a contact
  • GETList product events
  • GETGet analytics overview
  • GETList workflows
  • POSTCreate a workflow
  • GETList workflow runs
  • GETList webhook subscriptions
  • POSTCreate a webhook subscription
  • GETGet a webhook subscription
  • DELETEDelete a webhook subscription
  • PATCHUpdate a webhook subscription
  • GETList webhook deliveries
  • POSTReplay a webhook delivery
  • GETList files
  • POSTCreate a multipart file upload
  • GETGet file metadata
  • DELETEDelete a file
  • GETGet current subscription
  • PATCHUpdate subscription settings
  • GETList invoices
  • GETGet metered usage
  • GETList API keys
  • POSTCreate an API key
  • POSTRevoke an API key
  • GETList audit logs
  • GETList exports
  • POSTCreate an export
  • GETGet API health
GET/organizations/{organizationId}/events

List product events

Returns immutable product events for an organization and a selected time window.

Send request

Use the documented inputs to call this endpoint directly.

API serverbase URL
Bearer tokenBearerAuthoptional
Stored only in this browser for the BearerAuth security scheme and reused on every API page in this group.

Parameters

Values are applied to the request and the example on the right.

organizationIdpath · stringrequired

Opaque organization identifier.

limitquery · integeroptional

Maximum records to return. Defaults to 25.

cursorquery · stringoptional

Opaque cursor from a prior response.

event_namequery · stringoptional
fromquery · string · date-timeoptional
toquery · string · date-timeoptional

Responses

200application/json

Event page.

{
  "data": [
    {
      "id": "evt_01J8FB7D3P6Q9T2V5M4",
      "name": "document.published",
      "occurred_at": "2026-09-03T10:21:30Z",
      "actor": {
        "type": "member",
        "id": "mem_01J8F3D2P9Q7V6N5M4K"
      },
      "subject": {
        "type": "document",
        "id": "doc_01J8F8W4S3P2N9B6M7K5Q1R0T"
      },
      "properties": {
        "version": 4,
        "source": "api"
      }
    }
  ],
  "page": {
    "next_cursor": "eyJvZmZzZXQiOjI1fQ",
    "previous_cursor": null,
    "has_more": true
  },
  "request_id": ""
}
dataarray<>optional
pageoptional
request_idstringoptional
Update a contact< PreviousGet analytics overviewNext >

Powered by heyo

curl --request GET \  'https://api.demo.heyo.example/v3/organizations/org_01J8F1Q6N6VTX4E8W9R2D0A7B3/events?limit=25&cursor=eyJjcmVhdGVkX2F0IjoiMjAyNi0wOS0wMVQxMDowMDowMFoifQ&event_name=document.published&from=2026-09-01T00%3A00%3A00Z&to=2026-09-03T23%3A59%3A59Z'
{  "data": [    {      "id": "evt_01J8FB7D3P6Q9T2V5M4",      "name": "document.published",      "occurred_at": "2026-09-03T10:21:30Z",      "actor": {        "type": "member",        "id": "mem_01J8F3D2P9Q7V6N5M4K"      },      "subject": {        "type": "document",        "id": "doc_01J8F8W4S3P2N9B6M7K5Q1R0T"      },      "properties": {        "version": 4,        "source": "api"      }    }  ],  "page": {    "next_cursor": "eyJvZmZzZXQiOjI1fQ",    "previous_cursor": null,    "has_more": true  },  "request_id": ""}