0

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?

meet_paija
  • 51
  • 7
  • Unless the documentation for a particular endpoint specifically mentions a parameter that can be used for sorting, it usually means there isn't one. – CBroe Sep 27 '21 at 13:04
  • Yeah, there are no such parameters which can be used for sorting, thanks for the input! – meet_paija Sep 28 '21 at 04:00

1 Answers1

0

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.

Sprizgola
  • 416
  • 2
  • 10
  • Thanks for your input @Sprizgola, the only concern is there might be some creatives that are created but not used in any ads, those we might miss in this solution. – meet_paija Sep 28 '21 at 04:03