Search filters
It's possible to filter the list with filters combination:
filters[tea_id]=%uuid% - filter by specific TEA from the TEA group
filters[candidate_ref][evolia]=8304/06 - filter by candidate's Evolia ID
filters['created_at']['eq']=%date% - filter by creation date where created_at >= '%date% 00:00:00' and created_at <= '%date% 23:59:59'
filters['created_at']['gte']=%date_1% - filter by creation date where created_at >= '%date_1%'
filters['created_at']['lte']=%date_2% - filter by creation date where created_at <= '%date_2%'
pagination:
The result list uses cursor-based pagination for better optimization for interactions via the big amount of records
after
To get 1st page with initial cursor values, request as
API_URL?limit=100
parse 'next' value and navigate to next page, as
URL?limit=100&after={next}
to retrieve the next page of results.
before
parse 'before' value from next pages response and navigate to previouse page, as
URL?limit=100&before={prev}