long advertiserId) throws Exception {
// Request the service.
CreativeGroupRemote service = dfaServices.get(session, CreativeGroupRemote.class);
// Create the creative group.
CreativeGroup creativeGroup = new CreativeGroup();
creativeGroup.setId(-1);
creativeGroup.setName(creativeGroupName);
creativeGroup.setGroupNumber(groupNumber);
creativeGroup.setAdvertiserId(advertiserId);
// Save the creative group.
CreativeGroupSaveResult creativeGroupSaveResult = service.saveCreativeGroup(creativeGroup);
// Display the new creative group ID.