Discover AdWords API v201109


This week we released an addition to the v201109 version of the API, enabling one of the most commonly requested uses of the API: account creation. The CreateAccountService creates AdWords accounts without login emails (corresponding to the new optional-login feature available in the AdWords UI).

Sample request

Let’s dive right into some sample code using the Java client library. Notice that the only required parameters are currency, time zone, and descriptive name:

// Get the CreateAccountService.
CreateAccountServiceInterface createAccountService =
    user.getService(AdWordsService.V201109.CREATE_ACCOUNT_SERVICE);

Account account = new Account();
account.setCurrencyCode("EUR");
account.setDateTimeZone("Europe/London");

CreateAccountOperation operation = new CreateAccountOperation();
operation.setDescriptiveName("Account Created with CAS");
operation.setOperand(account);
operation.setOperator(Operator.ADD);

CreateAccountOperation[] operations =
    new CreateAccountOperation[] {operation};

Account[] accounts = createAccountService.mutate(operations);

Notes

  • The new accounts will be automatically linked to

    More at google's blog

    Incoming search terms:

    • adwords accountinfo v201109
    • google adwords v201109 account descriptive name
    • google adwords api get currency
    • google adwords 201109
    • getaccounts adwords api
    • get account info in adwords v201109
    • descriptivename google adwords
    • descriptiveName account v201109
    • adwords v201109 time zone mapping
    • adwords v201109 currency code
    Processing your request, Please wait....

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>