import { automation, onDashboardRun } from "automate.ax"
import { googleAds } from "automate.ax/google-ads"
export default automation("Upload user-list members", () => {
onDashboardRun({ title: "Upload user-list members" })
googleAds.uploadUserListMembers({
customerId: "1234567890",
customerMatchTermsAccepted: true,
userList: "customers/1234567890/userLists/111",
operation: "create",
identifiers: [
{
type: "hashedEmail",
hashedEmail:
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
},
],
})
})