'Get Facebook event content_name in API call

As per Facebook's documentation it is possible to send additional object properties when tracking an event as per the following example;

fbq(
  'track', 'Lead', {
    content_name: 'Auto Insurance',
    content_category: 'Quote',
    value: 40.00,
    currency: 'USD'
  }
);

I am able to get the number of leads with the following endpoint:

https://graph.facebook.com/v13.0/act_XXXXX/insights?access_token=XXXXX&date_preset=this_year&fields=account_name,campaign_name,conversions,actions&level=campaign

But is it possible to get the number of Leads grouped by content_name. I can't find the documentation anywhere.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source