Sign in

Update Subscriber

documented

Update subscriber information.

POST /api/v3/subscriber.update/jsonSubscribersno 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)

# Note: Official Sendloop API docs could not be fetched in this session (the docs page at sendloop.com/help/api-001/getting-started could not be loaded). The command below uses the endpoint path you provided and a plausible base URL based on common Sendloop API patterns. If you can share the exact base URL or doc snippet, I’ll adjust to be exact.

npx -y keychains@latest curl "https://api.sendloop.com/v1/api/v3/subscriber.update/json" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"email": "{{$email}}", "subscriber": {"email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "status": "{{$status}}", "custom_fields": {"city": "{{$city}}", "phone": "{{$phone}}"}} }'
Update Subscriber · sendloop · OpenIntegrations