Question
How can I extract records from a particular date or in a date range?
Answer
Use the API:
GET /entities/?filter=(range(updatedTime,{start_date},{end_date})
where the start date and end date are formatted
Example:
GET /entities/?filter=(range(updatedTime,1560321000000,1560407400000)
By using filter conditions, you can extract records based on other criteria such as entity type or where the attribute name starts with a particular string.
Alternate Example 1: Filter by Entity Type Organization:
filter=(equals(type,'configuration/entityTypes/Organization'))
Alternate Example 2: Find Individual entities that have the first name starting with 'An':
filter=(equals(type,'configuration/entityTypes/Individual') and startsWith(attributes.FirstName, 'An'))
References
Filtering: https://help.reltio.com/index.html#entitiesapi/entitiesfiltering.html
Exporting Entities with Filter: https://help.reltio.com/index.html#exportapi/exportentitieswithfilter.html
Filter condition: https://docs.reltio.com/relationsapi/filtering.html?hl=filter%2Ccondition
Comments
Please sign in to leave a comment.