AdSet Ads Ads Error from Facebook Ads Ads

I get a strange error from the Facebook Ads API. Sending the following payload:

{
  "campaign_group_id": "54321",
  "bid_type": "ABSOLUTE_OCPM",
  "name": "Hello AdCampaign",
  "bid_info": {
    "ACTIONS": 1
  },
  "targeting": {
    "behaviors": [
      {
        "name": "BEHAVIOR NAME",
        "id": 12345
      }
    ],
    "geo_locations": {
      "countries": [
        "US"
      ]
    },
    "page_types": "feed"
  },
  "campaign_status": "ACTIVE",
  "daily_budget": 100
}

Providing this payload with api declarations returns the following error message:

You request a transaction that requires normalization of normal groups, but normalization fails because normalization expects a collection

Who has the associated error code 1487079 , which .. I can’t find the documentation for .. EVERYWHERE.

This will work if I remove the targeting behavior attribute .. but of course this is not desirable. So this has something to do with behavior.

+4
1

, , page_types . :

{
    ...
    "page_types": ["feed"],
    ...
}
+3

All Articles