How do I connect ads to adcreatives in Facebook Ads API v2.3?

46 views Asked by At

In the past, when I requested an ad from the API, it returned a field called "creative_ids" which I could use to get the connection between an ad and its creatives.

In version 2.3, this field has been deprecated. What is the best way to find the connection between and ad and its creatives now?

1

There are 1 answers

0
Sergey Kalyuzhniy On

The field is now called: "creative", the value is an object with the id field.

Eg: /?fields=creative

{
"id": "< AD_GROUP_ID >",
  "creative": {
    "id": "<CREATIVE_ID>"
  }
}