Can Bing Ads Offline Conversions be achieved in a REST API way with the Curl command on Linux? Or, is there a way to understand the SOAP API process with Curl so that I can understand the lower-level HTTP calls it makes and can parse the SOAP XML response?
CodePudding user response:
GetUser API calls
I'll start out with using curl command on Linux
for accessing BingAds API/ to understand the same process of SOAP API process with Curl/ lower-level HTTP call it makes...
Consider these basic examples:
-
Bing Ads Offline Conversions API calls
I can point you to the following links, which you may try out using above method.
- https://docs.microsoft.com/en-us/advertising/campaign-management-service/applyofflineconversions?view=bingads-13
- https://docs.microsoft.com/en-us/advertising/guides/code-example-offline-conversions?view=bingads-13
- https://docs.microsoft.com/en-us/advertising/bulk-service/offline-conversion?view=bingads-13
However, other than for the purpose of understanding SOAP API calls to BingAds, I would recommend against using curl for your automation. Instead, use C#/Java/Php/Python APIs links. C# in .net core works executes well in Linux platform.