Add contacts to user list
documentedAdd a set of users to a user list.
POST /advertising/userLists/{listID}/contactsUser Listsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://www.toneden.io/api/v1/advertising/userLists/{{$listID}}/contacts" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"contacts": [{"email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}"}], "operation": "{{$operation}}"}'