I am now facing the issue on import user data into Google Ads UserList by Google Rest API
Right now, I have been created a userList by Google Rest API completely with no issue and everything works fine with this step
I've got a successful response but nothing show on Google Ads
However, I've been tried on some CRM platforms. They can automatically upload a user data into a user list with the result below
What should I do to get the same uploading process result as a picture above (In the green box) by a Google Ads Rest API ?
PS: Here is my request body and response (If needed)
- BODY
- {
"customerMatchUserListMetadata": {
"userList": "customers/1738905201/userLists/7941861599"
},
"operations": [
{
"create": {
"userIdentifiers": [
{
"hashedEmail": "6ac31f2a11dd3e755dfd7864865320c0b7acc9e21e4f707a6c535004990c2d32"
}
]
}
}
]
}
- RESPONSE
- {
"uploadDateTime": "2023-04-26 11:55:50",
"receivedOperationsCount": 1
}
Thanks a lot!