Sign in

Add subscriber (duplicate)

documented

Add a subscriber to a list (alternate documentation instances show the same endpoint).

POST /api/v2/lists/{ID}/subscribersSubscribersno implementation yet0 runs
No 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://app.tatango.com/api/v2/lists/{{$list_id}}/subscribers" \ 
  -X POST \ 
  -u "{{$tatango_email}}:{{TATANGO_API_KEY}}" \ 
  -H "Accept: application/json" \ 
  -H "Content-Type: application/json" \ 
  -d '{"subscriber": {"phone_number": "{{$phone_number}}","first_name":"{{$first_name}}","last_name":"{{$last_name}}","email":"{{$email}}","birthdate":"{{$birthdate}}","zip_code":"{{$zip_code}}","gender":"{{$gender}}","carrier":{{$carrier}}}}'