GET
/
projects
/
{projectId}
/
entries
curl --request GET \
  --url https://api.embeddables.com/projects/{projectId}/entries \
  --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",
    "entry_data": "{ \"email\": \"ada@lovelace.com\" }"
  },
  {
    "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",
    "entry_data": "{ \"email\": \"grace@hopper.com\" }"
  },
  {
    "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",
    "entry_data": "{ \"email\": \"alan@turing.com\" }"
  }
]

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).

sort
string

the key that you want to sort by (defaults to last_updated)

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

Response

200
application/json
entry_id
string
required

The unique identifier for an Entry in the database

group_id
string
required

The unique identifier for a Group in the database

project_id
string
required

The unique identifier for a Project in the database

embeddable_id
string
required

The unique identifier for a Embeddable in the database

contact_id
string
required

The unique identifier for a Contact 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

entry_data
string
required

The entry's user data, stringified