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]=8304/06 - filter by candidate's Flexible Reference identifier
filters['started_at_greater_than']=%timestamp% - filter by availability starting date >= '%timestamp%'
filters['started_at_less_than']=%timestamp% - filter by availability starting date <= '%timestamp%'
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
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}