GET
/
projects
/
{projectId}
/
entries-page-views
curl --request GET \
  --url https://api.embeddables.com/projects/{projectId}/entries-page-views \
  --header 'X-Api-Key: <x-api-key>'
[
  {
    "entry_id": "entry_myexampleentry_1",
    "group_id": "group_myexamplegroup",
    "project_id": "pr_myexampleproject",
    "embeddable_id": "flow_myexampleflow",
    "contact_id": "contact_myexamplecontact_1",
    "created_at": "2022-01-01T00:00:00Z",
    "updated_at": "2022-01-01T00:00:00Z",
    "page_views": [
      {
        "timestamp": "2022-01-01T00:00:00Z",
        "page_id": "page_myexamplepageid1",
        "page_key": "page_myexamplepagekey1",
        "page_index": 1
      }
    ]
  },
  {
    "entry_id": "entry_myexampleentry_2",
    "group_id": "group_myexamplegroup",
    "project_id": "pr_myexampleproject",
    "embeddable_id": "flow_myexampleflow",
    "contact_id": "contact_myexamplecontact_2",
    "created_at": "2022-01-01T00:00:00Z",
    "updated_at": "2022-01-01T00:00:00Z",
    "page_views": [
      {
        "timestamp": "2022-01-01T00:00:00Z",
        "page_id": "page_myexamplepageid1",
        "page_key": "page_myexamplepagekey1",
        "page_index": 1
      }
    ]
  },
  {
    "entry_id": "entry_myexampleentry_3",
    "group_id": "group_myexamplegroup",
    "project_id": "pr_myexampleproject",
    "embeddable_id": "flow_myexampleflow",
    "contact_id": "contact_myexamplecontact_3",
    "created_at": "2022-01-01T00:00:00Z",
    "updated_at": "2022-01-01T00:00:00Z",
    "page_views": [
      {
        "timestamp": "2022-01-01T00:00:00Z",
        "page_id": "page_myexamplepageid1",
        "page_key": "page_myexamplepagekey1",
        "page_index": 1
      }
    ]
  }
]

Headers

X-Api-Key
string
required

Path Parameters

projectId
string
required

The unique identifier for a Project 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
updated_after
string

A Date + Time string in ISO format

updated_before
string

A Date + Time string in ISO format

include_urls
boolean | null

Response

200
application/json
entry_id
string
required

The unique identifier for an Entry in the database

contact_id
string
required

The unique identifier for a Contact in the database

project_id
string
required

The unique identifier for a Project in the database

group_id
string
required

The unique identifier for a Group in the database

embeddable_id
string
required

The unique identifier for a Embeddable in the database

created_at
string
required

A Date + Time string in ISO format

updated_at
string
required

A Date + Time string in ISO format

page_views
object[]
required