I'm developing an integration for one of our clients. I'm having trouble in regards with the query parameters to filter the results by date on the contacts endpoint:
https://api2.frontapp.com/contacts
How I'm supposed to use the query parameter?
I'm developing an integration for one of our clients. I'm having trouble in regards with the query parameters to filter the results by date on the contacts endpoint:
https://api2.frontapp.com/contacts
How I'm supposed to use the query parameter?
Using the query parameter (q)
to filter for contacts updated before/after a specific date would be done like this:
The "raw" URL to use would be;
https://api2.frontapp.com/contacts?qqupdated_after]=1654560000&qqupdated_before]=1654732800
Curl version:
curl 'https://api2.frontapp.com/contacts?q\qupdated_after\]=1654560000&q\qupdated_before\]=1654732800'
The values you submit are UNIX timestamps, and the updated_before/after
values are considered array elements.
--Jason
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.