
Hi Team,
I am fetching all phone call records using graphapi through getPstnCalls function as given below to generate daily reports:
getPstnCalls(fromDateTime=@{formatDateTime(addDays(utcNow(), -1 ), 'yyyy-MM-dd')},toDateTime=@{formatDateTime(utcNow(),'yyyy-MM-dd')})
This is not fetching all the records of a given date. This fetches all the records but not above the time 23:33:00 for any particular dates
I have tried the below but no luck. The flow stopped fetching upto 700+ records and then throws an error: Action 'Add_a_row_into_a_table' failed
getPstnCalls(fromDateTime=@{formatDateTime(addDays(utcNow(), -1 ), 'yyyy-MM-ddT00:00:00Z')},toDateTime=@{formatDateTime(addDays(utcNow(), -1 ),'yyyy-MM-ddT23:59:59Z')})
Please let me know how to overcome this.
Thanks
Djeanthi
getPstnCalls(fromDateTime=@{formatDateTime(addDays(utcNow(), -1 ), 'yyyy-MM-dd')},toDateTime=@{formatDateTime(utcNow(),'yyyy-MM-dd')})
not fetching if phone call logs are more than 1000 records.
How to manage this.