We need to report to him anything that doesn't have a smart advocate ID
He also asked that we do a daily report for everything we took in the previous days. Is there something Greg and I can use to see what has a smart advocate ID? (i know you guys are busy)
Or is there a daily report that can run that includes SA IDs?
I can write a query that will display the last days sends. Once I am out of this flatirons meeting I will work on it
This is the query for daily send s for meadow integrations. You both have been added to the query as a shared user.
SELECT **
FROM `integrations-tip.gcp_integrations_postgres.lead_data_view`
WHERE case_type_id in (1705, 1749, 1892, 1794) -- enter case type here
AND DATE(intake_processed_at) = CURRENT_DATE - interval 1 day
ORDER BY intake_processed_at DESC
LIMIT 1000;