huiwang
07/29/2024, 10:39 AMVapi
07/29/2024, 10:40 AMcreatedAtLt (created at less than) parameter you've used will only filter calls made before the specified timestamp. To get calls from a specific day, you should use both createdAtGte (created at greater than or equal to) and createdAtLt parameters to encompass the 24-hour period.
Here's an example payload to get calls from a specific day (let's say December 27, 2024):
json
{
"createdAtGte": "2024-12-27T00:00:00Z",
"createdAtLt": "2024-12-28T00:00:00Z"
}
This will return calls that were created on December 27, 2024. Make sure to adjust the dates to the day you're interested in. If you're still encountering issues after using both parameters correctly, please ask support for more info on this.Vapi
07/29/2024, 10:40 AMVapi
07/29/2024, 10:42 AMhuiwang
07/29/2024, 10:43 AMhuiwang
07/29/2024, 10:47 AM