Add User to UserList for Google Ads Remarketing
Problem: I can't figure out how, using the Node.js google-ads-api, to add a user to a Google Ads remarketing user list.
I can create the user list:
async createUserList() { const mutation = await this.customer.userLists.create({ name: '<USERLIST_NAME>', membership_life_span: 60, membership_status: enums.UserListMembershipStatus.OPEN, basic_user_list: { actions: [{ remarketing_action: '<REMARKETING_ACTION_RESOURCE_NAME>', }] } }) console.log(`created userlist ${mutation.results[0]}`) return mutation.results[0] }
I'm still trying to read the Google Ads Api documentation to see if I'm misunderstanding the intended workflow with remarketing, but I do expect adding users to a user list programmatically to be a supported functionality.