The created_at filter allows you to retrieve users based on their creation date. You can use this filter in three ways:
1. Single Date Provided: When a single date is provided, the API will return users created on or after the specified date.
- Example: ?filter[created_at]=2024-07-11
2. Date Range Provided: When two dates are provided, separated by a semicolon (;), the API will return users created between the two dates (inclusive).
- Example: ?filter[created_at]=2024-07-01;2024-07-11
3. End Date Without Time: If the second date in the range does not include a time part, it will be treated as the start of the day (00:00:00), meaning users created on the end date itself will not be included.
- Example: ?filter[created_at]=2024-07-01;2024-07-11 (will not include users created on 2024-07-11)
.