Questions tagged [bing-ads-api]

Bing Ads is a pay-per-click (PPC) advertising platform used to display ads based on a user's search query. For advertisers placing a large number of ads or developers building advertising tools, the Bing Ads API provides a programmatic interface to Bing Ads.

Microsoft Advertising is a pay-per-click (PPC) advertising platform used to display ads based on a user's search query. For advertisers placing a large number of ads or developers building advertising tools, the Bing Ads API provides a programmatic interface to Microsoft Advertising.

For more information and support see the Microsoft Advertising Developer Documentation Hub.

84 questions
0
votes
1 answer

Unable to get the Refresh Token - Bing Ads API

I have been trying to follow the method outlined in the QuickStart guide, but I'm stuck at this. https://learn.microsoft.com/en-us/advertising/guides/authentication-oauth-get-tokens?view=bingads-13 Bing Ads API Version: 13.0.13 Successfully got the…
Manju
  • 199
  • 1
  • 2
  • 10
0
votes
1 answer

Bing Ads API, how to find CustomerAccountId

I'm trying to use SubmitGenerateReport to generate an AdGroupPerformanceReport and it looks like I need to add both a CustomerId and a CustomerAccountId to the header in addition to the DeveloperToken and AuthenticationToken that I needed for the…
madstap
  • 1,552
  • 10
  • 21
0
votes
1 answer

Is there a way to call the BingAds API inside an Airflow operator?

I need to download my company's marketing campaigns on Bing Ads from Airflow. I have seen there is a Bing Ads SDK in Python that may be a good starting point to build a custom operator that would make an API call to Bing Ads and upload the resulting…
0
votes
1 answer

Is it possible to use HTTP for Bing Ads Report API?

I would like to interact with the Bing Ads Report API using HTTP call but I can't find the endpoints to do so. LinkedIn which is also a Microsoft product offers that possibility, so I would think it's possible with Bing Ads to.
Jude
  • 11
  • 4
0
votes
1 answer

How to get data from Microsoft Bing Ads API

I'm trying to get Bing ads spends from my firm. According to the Microsoft documentation, I understood that it's mandatory to use Microsoft Azure portal, get developer_token, client_id, tenant_id, client_secret, and access/refresh token to download…
ATG46
  • 1
  • 1
  • 2
0
votes
1 answer

Can CampaignPerformanceReportRequest return for all campaigns?

Trying to use the Bing Ads API to duplicate what I see on the Hourly report. Unfortunately, even though I'm properly authenticated, the data I'm getting back is only for One Campaign (one which has like 1 impression per day). I can see the data in…
deltree
  • 3,756
  • 1
  • 30
  • 51
0
votes
1 answer

How to get the details of error proved with TrackingId?

Provided with only the TrackingId of an error when accessing Bing Ads API, how can I know the details of the request and the error details? I only can get this error: (s:Server) Invalid client data. Check the SOAP fault details for more information.…
simo
  • 23,342
  • 38
  • 121
  • 218
0
votes
0 answers

Bings Ads Script - Calling Google Services not working

I'm trying to run a script in Bing Ads that will get the performance data and write it in Google Sheets. I based my code on Microsoft example: https://learn.microsoft.com/en-us/advertising/scripts/examples/calling-google-services However, my code…
Jude
  • 11
  • 4
0
votes
1 answer

BingAds API: DownloadCampaignsByAccountIds: "Invalid client data"

I'm using the BingAds Python API to access an account with several clients under it. After retrieving the accounts from CustomerService.SearchAccounts(), I pass the Account.Id field to a BulkService client: accounts =…
BobRz
  • 470
  • 5
  • 11
0
votes
1 answer

Bing Ads API Can't Retrieve All Ads on Account - Broken Filters

No matter what I do I cannot pull all the ads on my account. My end goal is to find disapproved ads on the account programmatically, but no matter which filters I use (Even if I use no filters), I can only retrieve 59 out of 181 ads on the account.…
Jordan Lagan
  • 222
  • 2
  • 13
0
votes
0 answers

Bing Ads API - Filter On Ad Delivery Status

I'm trying to do something which I believe should be a very basic function of the Bing Ads API, but I'm running into trouble. What I want to do is make a custom report showing all Bing ads that have been disapproved or are prohibited from being…
Jordan Lagan
  • 222
  • 2
  • 13
0
votes
1 answer

Bing Ads API - Adding more than one CampaignStatusReportFilter while filtering Reports

I'm trying to filter the SearchQueryPerformanceReport in the Bing Ads Api, I can get the report back fine however I want to filter the report by multiple CampaignStatus For Example var report = new SearchQueryPerformanceReportRequest …
Matt Coll
  • 23
  • 4
0
votes
0 answers

BingAds API Type not found Issue

Our product uses the bingads api v13 to perform some of the CRUD services: https://learn.microsoft.com/en-us/advertising/guides/get-started-python?view=bingads-13. We had an issue today all of a sudden at…
ling
  • 185
  • 3
  • 19
0
votes
1 answer

Bingads SDK Python Suds sending wrong envelope

Using BingAds SDK for Python I am not able to perform any operation to update because of a bug that I cannot resolve. The SDK uses Suds for the handling of SOAP operation. Here is the…
peterpeterson
  • 1,315
  • 2
  • 14
  • 38
0
votes
2 answers

SoapFault exception in bing ads api response while downloading user location performance report with php

I'm trying to download the Bing ads user location performance report. my php code is : define("ADCENTER_API_ENDPOINT", "https://reporting.api.bingads.microsoft.com/Api/Advertiser/Reporting/v13"); define("ADCENTER_API_NAMESPACE",…