Bulk update subscriber custom field values
documentedBulk update custom field values for subscribers.
POST /v4/bulk/custom_fields/subscribersCustom Fieldsno 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://api.kit.com/v4/bulk/custom_fields/subscribers" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"subscribers": [{"email_address": "{{$email_address}}", "first_name": "{{$first_name}}", "fields": {"Last name": "{{$last_name}}", "Birthday": "{{$birthday}}", "Source": "{{$source}}", "Role": "{{$role}}", "Company": "{{$company}}", "Postal code": "{{$postal_code}}", "Website": "{{$website}}", "Social media": "{{$social_media}}", "How did you hear about us?": "{{$hear_about}}", "Interests": "{{$interests}}"} }], "callback_url": "{{$callback_url}}" }'"