List Id and Name for All Entries Using Cells API
GET {{host}}/api/rest/v4/data/entrydata/{{entryTypeId}}/entries
Authorization: Bearer {{token}}
Returns the name and ID of all entries for a given entry type (excluding deleted entries).
Tip: If you only need a subset of the data, consider using the Filter API.
Params
Name | Parameter Type | Data Type | Values | Description |
---|---|---|---|---|
entryTypeId | Path | string/int | company or 2011 | Unique identifier of the object or it's name. |
Additional Requirements
- All entries are returned without pagination.
- Skip and limit are ignored.
Samples
Sample Requests
[
{
"id": 2772624,
"name": "Test Interactions",
"entryListId": 2013
},
{
"id": 2772625,
"name": "Example Interactions",
"entryListId": 2013
}
]