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.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9d45d0fc-6d54-424d-b820-107a7112ba67n%40googlegroups.com.

Reply via email to