Hi,
I want to create a POST method to add users into my segment. I found this cURL request; curl --request POST \
--url '
https://googleads.googleapis.com/v10/customers/1234567890/userLists/YOUR_USER_LIST_ID:mutateMembers' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--data-raw '{
"customerId": "1234567890",
"operations": [
{
"operator": "ADD",
"operand": {
"userListId": "YOUR_USER_LIST_ID",
"membersList": [
{
"hashedEmail": "HASHED_EMAIL_1"
},
{
"hashedEmail": "HASHED_EMAIL_2"
}
# Add more members as needed
]
}
}
]
}'
however it didn't work. Please assist, I don't want to use google methods. I just want to hit a URL with specified data.