List Entries using Filters

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

NameParameter TypeData TypeValuesDescription
entryTypeIdPathstring/intcompany or 2011Unique identifier of the object or it's name.
BodyfilterFilterOperations

Additional Requirements

  • Filter criteria is an array of filters that are ANDed together.
    • See FilterOperations](../../schema/metadata/filter_operations) for details.

Examples

Body

[
  {
    "fieldId": 2300,
    "value": "v",
    "filterOperation": 1
  }
]

Response

[
  1882492,
  1882494,
  1882498,
  1882500,
  1891705
]