Basically, I have a list of keywords, such as:
- red balloons
- free red balloons
- buy red balloons
- blue balloons
- ....
for each keyword, I have a list of 3-4 ads, each ad consisting of a title, line 1, line 2, and a url, e.g:
Title: Free red balloons!
Line 1: Buy free red balloons right now!
Line 2: No hidden fees!
Url: http://example.com
I have 3-4 such ads for every keyword.
Using the API, I want to:
1) Create an adgroup for every keyword
2) Under the adgroup, upload all the ads for that particular keyword.
So all the ads for `free red balloons` would go under that keyword's adgroup.
I'm looking for some general pointers/links to API pages for the methods which I'll need to use to accomplish this. Specifically I'm using PHP and the Apility library, but non-php specific info will also be very much welcome.
Thanks.