List Filtered Entries Using Cells API
POST {{host}}/api/rest/v4/data/entrydata/{{entryTypeId}}/filter
Authorization: Bearer {{token}}
Content-Type: application/json Return a list of Ids that match the filter criteria.
Params
| Name | Parameter Type | Data Type | Values | Description | 
|---|---|---|---|---|
| entryTypeId | Path | string/int | company or 2011 | Unique identifier of the object or it's name. | 
| Body | filter | FilterOperations | 
Additional Requirements
- Filter criteria is an array of filters that are ANDed together.
- See FilterOperations for details.
 
 
Examples
Body
[
  {
    "fieldId": 2300,
    "value": "v",
    "filterOperation": 1
  }
]Response
[
  1882492,
  1882494,
  1882498,
  1882500,
  1891705
]