Community Discussion
Some Content IDs on API Response are null
This is the API Call we are directing to Taboola :
```
curl --location 'https://backstage.taboola.com/backstage/api/1.0/<acc-id>/reports/top-campaign-content/dimensions/item_breakdown?item_breakdown=item&start_date=2023-03-24&end_date=2023-03-24' \
--header 'Authorization: Bearer <token>'
```
From the API response we are receiving performance and other statistics data, but some content ids are sent as null.
Posted by Iris over 1 year ago
Get campaign URL
Hi team
Is there a way to get the campaign url in backstage API (campaign summery)?
Posted by null over 1 year ago
Count of items from Top Campaign Content Report is less then count of all campaign items
Hi, is there any way to collect data from Top Campaign Content Report for all items in campaign?
Posted by [email protected] almost 2 years ago
old version items missing from Top Campaign Content
Hi,
we use Taboola Backstage API in our product, using this url "backstage/api/1.0/%s/reports/top-campaign-content/dimensions/item_breakdown?start_date=%s&end_date=%s", we see that there are items missing from the response, all items that are labeled "(old version)" that are present in the Taboola UI in Top Campaign Content are missing from the API response, I tried looking into the docs but couldn't find any clue related to (old version) items and how to pull them!!
any advise on why there are missing?
Posted by Samer Kinaan about 3 years ago
Reporting down to creative/item level using Campaign Summary Reporting API?
Hi,
According to the Backstage API doc, there are only a number of available preset dimensions to pull a Campaign Summary Report. I am currently using 'campaign_site_day_breakdown'.
I'm trying to get reporting data down to the creative/item level but none of them go down to that level. Is it possible to pull a report down to a creative/item level?
Thanks,
Ed
Posted by Edward Tan almost 4 years ago
"top_campaign_content_report" API returning NULL for certain items
We are receiving a null value for 'item' in the "top_campaign_content_report" table. We have made the primary key for the table "top_campaign_content_report", which is a hash value of item, date, item_name, campaign_id fields. Sometimes, we get a null value for the item field in the response, for eg:
curl -H 'Authorization: Bearer XXX' -A 'Jesey/2.25.1' 'https://backstage.taboola.com/backstage/api/1.0/xxxxxxxxxx/reports/top-campaign-content/dimensions/item_breakdown?end_date=2019-09-21&campaign=898661&start_date=2019-09-21' | jq
Returns:
{
"item": null,
"item_name": "xxxxxxxxx",
"thumbnail_url": "xxxxxxx",
"url": "xxxxxxxx",
"campaign": "898661",
"campaign_name": "xxxxxxxx",
"content_provider": "1121684",
"content_provider_name": "xxxxxxxx",
"impressions": 1371,
"visible_impressions": 376,
"ctr": 0.15,
"vctr": 0.53,
"clicks": 2,
"cpc": 0.108,
"cvr": 50.00,
"cvr_clicks": 50.00,
"cvr_views": 0.00,
"cpa": 0.22,
"cpa_clicks": 0.22,
"cpa_views": 0.00,
"actions": 1,
"actions_num_from_clicks": 1,
"actions_num_from_views": 0,
"cpm": 0.16,
"vcpm": 0.57,
"spent": 0.22,
"conversions_value": 0.00,
"roas": 0.00,
"currency": "USD"
},
The same request executed on a different date sometimes returns a valid 'item' and the hash value will get changed and this causes us to add duplicate records while upserting the data.
We do not expect to be getting a null value because the item value is the same as id in the "campaign_item" table, and we do not see any null id value in the campaign_item table.
After more discovery, we found that these values are being returned as 'null' because that item has been deleted from the campaign history.
Can everything be paused instead of deleted to try overcome this data integrity issue?
Posted by Sean over 4 years ago
Is it possible to request settings for all campaign items in an account?
I'm looking to download settings for all campaign items, and it seems like the only documented way is to iterate through each campaign and download item settings. This means we'd need an HTTP request per campaign. Do you happen to know if there's an endpoint for getting ALL campaign item settings, at the account level?
Posted by Tyler over 4 years ago