GET
/
projects
/
{projectId}
/
entries
/
{entryId}
/
events
curl --request GET \
  --url https://api.embeddables.com/projects/{projectId}/entries/{entryId}/events \
  --header 'X-Api-Key: <x-api-key>'
[
  {
    "entry_id": "entry_myexampleentry",
    "contact_id": "contact_myexamplecontact",
    "project_id": "pr_myexampleproject",
    "group_id": "group_myexamplegroup",
    "embeddable_id": "flow_myexampleflow",
    "embeddable_version_number": 1,
    "timestamp": "2022-01-01T00:00:00Z",
    "page_id": "page_myexamplepageid1",
    "page_key": "page_myexamplepagekey1",
    "page_index": 1,
    "max_page_id": "page_myexamplemaxpageid2",
    "max_page_key": "page_myexamplemaxpagekey2",
    "max_page_index": 2,
    "total_pages": 3,
    "event_type": "flowpage.viewed",
    "view_type": "flowpage",
    "custom_event_name": "my_custom_event",
    "custom_event_props": "{ \"key\": \"value\" }"
  },
  {
    "entry_id": "entry_myexampleentry",
    "contact_id": "contact_myexamplecontact",
    "project_id": "pr_myexampleproject",
    "group_id": "group_myexamplegroup",
    "embeddable_id": "flow_myexampleflow",
    "embeddable_version_number": 1,
    "timestamp": "2022-01-01T00:01:00Z",
    "page_id": "page_myexamplepageid2",
    "page_key": "page_myexamplepagekey2",
    "page_index": 2,
    "max_page_id": "page_myexamplemaxpageid2",
    "max_page_key": "page_myexamplemaxpagekey2",
    "max_page_index": 2,
    "total_pages": 3,
    "event_type": "flowpage.viewed",
    "view_type": "flowpage",
    "custom_event_name": "my_custom_event",
    "custom_event_props": "{ \"key\": \"value\" }"
  }
]

Headers

X-Api-Key
string
required

Path Parameters

projectId
string
required

The unique identifier for a Project in the database

entryId
string
required

The unique identifier for an Entry in the database

Query Parameters

limit
integer

The number of entries to return (defaults to 10).

direction
enum<string>

The direction to sort by (defaults to DESC)

Available options:
ASC,
DESC

Response

200
application/json

The response is of type object[].