Groups
Organize subscribers into segments
GET
/api/v1/groupsList all subscriber groups
GET
/api/v1/groups/:idGet a specific group with subscriber count
POST
/api/v1/groupsCreate a new subscriber group
Example Request
{
"name": "VIP Customers",
"description": "High-value customers with premium access"
}PATCH
/api/v1/groups/:idUpdate a group
Example Request
{
"name": "Updated Group Name",
"description": "Updated description"
}DELETE
/api/v1/groups/:idDelete a group
⚠️ Note: Subscribers in this group will NOT be deleted, only the group association.
Managing Group Membership
POST
/api/v1/groups/:id/subscribersAdd subscribers to a group
{
"subscriberIds": ["sub-uuid-1", "sub-uuid-2"]
}DELETE
/api/v1/groups/:id/subscribersRemove subscribers from a group
{
"subscriberIds": ["sub-uuid-1", "sub-uuid-2"]
}