Add changelog subscribers
POST/v2/changelogs/subscribers
Adds email addresses as changelog subscribers in bulk.
Subscribers will receive email notifications when new changelogs are published (if email notifications are enabled during publishing).
Request Body
emails- Array of email addresses to add (required, 1-1000 emails)locale- Locale for the subscribers (optional, defaults to organization default)
Email Validation
- Invalid email addresses are automatically filtered out
- Emails are normalized (trimmed, lowercased)
- Duplicate emails are deduplicated
Rate Limiting
This endpoint is rate limited to prevent abuse. If you need to import more subscribers, please contact support.
Response
Returns a confirmation with the count of processed emails:
{
"object": "changelog_subscribers_import",
"count": 150
}
Errors
400- Invalid request (empty emails array, too many emails)429- Rate limit exceeded
Add changelog subscribers
curl https://do.featurebase.app/v2/changelogs/subscribers \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $FEATUREBASE_API_KEY" \
-d '{
"emails": [
"john@example.com",
"jane@example.com"
],
"locale": "en"
}'{
"count": 150,
"object": "changelog_subscribers_import"
}Returns Examples
{
"count": 150,
"object": "changelog_subscribers_import"
}