The Date Range feature scans and identifies all indexed documents that fall within the date range specified in the API request.
The API requests for Simple Search, Boolean Search, Free Text Search, Match, Match with ID, Match with Multiple Sub-User IDs, and Index Count, all allow for an optional query parameter called "dateRange".
This parameter specifies a date range and can be included in the API request to retrieve the response (matches) based on the documents indexed within that date range. See the following sample "dateRange" parameter that can be used in any of the aforementioned API requests:
"dateRange": [
{
"from": "2023-04-14",
"to": "2023-04-18"
}
],
Kindly Note:
- To search or match the document for a specific day, you must pass the same specific date in the “from” and “to” element of the dateRange parameter. See below example:
"dateRange": [ { "from": "2023-04-14", "to": "2023-04-14" } ],
2.If only “from” element is mentioned in the dateRange parameter, then all the response (matches) are based on the documents that are indexed on or after the date mentioned in the “from” element. See below example:
"dateRange": [
{
"from": "2023-04-14"
}
]
If you have any questions related to new user accounts, please reach out to the RChilli support team for assistance. You can submit a query through RChilli HelpDesk or send an email to support@rchilli.com.
Comments
0 comments
Please sign in to leave a comment.