Update Group
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { group, groupError } = await reloop.contacts.groups.update(6 "grp_123456789",7 { name: "Loyal Customers" },8);9
10if (groupError) throw groupError;11
12console.log(group.id, group.name);1{2 "object": "contact_group",3 "id": "con_123456789",4 "name": "Newsletter",5 "createdAt": "2026-03-23T10:00:00.000Z",6 "updatedAt": "2026-03-23T10:00:00.000Z",7 "event": "evt_123456789"8}Path Parameters
group_idstringRequired
Body Parameters
namestringRequired
Group name
- Minimum length:
1 - Maximum length:
255
Was this page helpful?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.