skip to Main Content

Is there a way to query the overlap feature as it’s possible in the Business Manager via the php sdk for the marketing API?

I’m thinking sending two or more audience IDs of existing audiences and getting the overlap back? I couldn’t find anything in the docs so far.

Any help is greatly appreciated!

2

Answers


  1. No. There is currently no php sdk support for this and the API call is not documented.

    If you are willing to make direct call you could call graph.facebook.com/v2.10/act_< acctid >/audienceoverlap?access_token=< access_token >&comparison_ids=["< audienceid >"]&pivot_id=< audienceid >

    Most likely you’ll need the browser’s access token for this.

    Login or Signup to reply.
  2. This call is working at api v10.0 but it no longer exist

    The old call is
    act_id/audienceoverlap?pivot_id=6124596383156&{comparison_ids=["audince1_id","audince2_id"]}

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search