I'm using below facebook marketing API to fetch all ad creatives under an adaccount,
https://graph.facebook.com/v11.0/{{adaccount_id}}/adcreatives
Can anyone suggest which parameter/field I can use to sort results by ascending order of creation date of particular adcreative?
I'm pretty sure you can't. What can you do instead is to fetch
AdCreatives
viaAd
and because the creative is associated to theAd
, you can then sort by thecreated_time
field.