Entries

Returns all entries for a given entry type, excludes deleted entries. This endpoint is designed for workflows where you need to export all data, and is ideal for processes that you intend to run once. If you only need a subset of the data, consider using filter. If your process depends on deltas, consider using the /history or /allHistory endpoints, as they're designed for delta workflows and return both modified and deleted entries.

Swagger

Swagger

Params

nametypevalues
entryTypeIdint/string2013 / interaction

Requests

GET {{host}}/api/rest/v4/data/entrydata/{{entryTypeId}}/entries HTTP/1.1

Responses

HTTP/1.1 200 OK
[
  {
    "id": 2772624,
    "name": "Test Interactions",
    "entryListId": 2013
  }
]

Errors

HTTP/1.1 400 Bad Request
{
  "message": "entryTypeId is not valid"
}