Filters records by using a query string on the field created_at.
Supports comparison operators eq, gt, gte, lt, lte.
Operator semantics:
eq — Exact match. Default when no operator prefix is supplied.
gt — Greater than the supplied value.
gte — Greater than or equal to the supplied value.
lt — Less than the supplied value.
lte — Less than or equal to the supplied value.
Query examples:
filter[created_at]=2025-11-11T15:30:00Z
filter[created_at]=eq:2025-11-11T15:30:00Z
filter[created_at]=gt:2025-11-11T15:30:00Z
filter[created_at]=gte:2025-11-11T15:30:00Z
filter[created_at]=lt:2025-11-11T15:30:00Z
filter[created_at]=lte:2025-11-11T15:30:00Z