Search in sources :

Example 21 with UserServiceInterface

use of com.google.api.ads.admanager.axis.v202108.UserServiceInterface in project googleads-java-lib by googleads.

the class UpdateUsers method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param userId the ID of the user to update.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long userId) throws RemoteException {
    // Get the UserService.
    UserServiceInterface userService = adManagerServices.get(session, UserServiceInterface.class);
    // Create a statement to only select a single user by ID.
    StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", userId);
    // Get the user.
    UserPage page = userService.getUsersByStatement(statementBuilder.toStatement());
    User user = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
    // Set the role of the user to a salesperson.
    // To determine what other roles exist, run GetAllRoles.java.
    user.setRoleId(-5L);
    // Update the user on the server.
    User[] users = userService.updateUsers(new User[] { user });
    for (User updatedUser : users) {
        System.out.printf("User with ID %d and name '%s' was updated.%n", updatedUser.getId(), updatedUser.getName());
    }
}
Also used : UserServiceInterface(com.google.api.ads.admanager.axis.v202111.UserServiceInterface) User(com.google.api.ads.admanager.axis.v202111.User) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder) UserPage(com.google.api.ads.admanager.axis.v202111.UserPage)

Aggregations

UserServiceInterface (com.google.api.ads.admanager.axis.v202108.UserServiceInterface)7 UserServiceInterface (com.google.api.ads.admanager.axis.v202111.UserServiceInterface)7 UserServiceInterface (com.google.api.ads.admanager.axis.v202202.UserServiceInterface)7 User (com.google.api.ads.admanager.axis.v202108.User)6 User (com.google.api.ads.admanager.axis.v202111.User)6 User (com.google.api.ads.admanager.axis.v202202.User)6 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder)4 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder)4 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)4 UserPage (com.google.api.ads.admanager.axis.v202108.UserPage)4 UserPage (com.google.api.ads.admanager.axis.v202111.UserPage)4 UserPage (com.google.api.ads.admanager.axis.v202202.UserPage)4 Role (com.google.api.ads.admanager.axis.v202108.Role)1 UpdateResult (com.google.api.ads.admanager.axis.v202108.UpdateResult)1 Role (com.google.api.ads.admanager.axis.v202111.Role)1 UpdateResult (com.google.api.ads.admanager.axis.v202111.UpdateResult)1 Role (com.google.api.ads.admanager.axis.v202202.Role)1 UpdateResult (com.google.api.ads.admanager.axis.v202202.UpdateResult)1