When I get data from Facebook graph using query string
act_109418612584009/campaigns?fields=id,name,adsets{id,name,insights}&since=2016-03-07&until=2016-03-08
The result I get is complete data (not a range from then to).
2016-03-17: update
Wrong, I read the document and solved it.
Find it at https://developers.facebook.com/docs/marketing-api/insights/v2.5
Request Structure
https://graph.facebook.com/<API_VERSION>/<AD_OBJECT_ID>/insights
Means, I can receive data with request
https://graph.facebook.com/v2.5/6032185014626/insights?time_range={"since":"2015-03-01","until":"2015-03-31"}
6032185014626 is an adet identifier
Happy coding
source share