Reputation: 61
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?
Upvotes: 0
Views: 642
Reputation: 441
I'm pretty sure you can't. What can you do instead is to fetch AdCreatives
via Ad
and because the creative is associated to the Ad
, you can then sort by the created_time
field.
Upvotes: 0