v1
latestOpenAPI 3.1.02026-07-22191956.7 KBGroups
Create a group
Creates an employer group. companyName and domain are the only required fields; currentCoverage.pepmCents powers the savings comparison on quotes.
post/groups
Headers
Idempotency-Keystring
Any unique string (UUIDs work well). Replaying the same key within 24 hours returns the stored response instead of re-executing the request.
Request body
Example request
{
"externalId": "co_4821",
"companyName": "Acme Inc",
"legalEntityName": "Acme Incorporated",
"domain": "acme.com",
"ein": "94-2404110",
"address": {
"line1": "548 Market St",
"city": "San Francisco",
"state": "CA",
"zip": "94104"
},
"contact": {
"name": "Dana Park",
"email": "dana@acme.com",
"title": "Head of People"
},
"currentCoverage": {
"planType": "fully_insured",
"carrier": "Anthem",
"pepmCents": 80000,
"renewalDate": "2026-09-01"
}
}Response
Group created.
Example response
{
"id": "grp_8c2f41d09a3e",
"companyName": "Acme Inc",
"domain": "acme.com",
"externalId": "co_4821",
"address": {
"line1": "548 Market St",
"city": "San Francisco",
"state": "CA",
"zip": "94104"
},
"contact": {
"name": "Dana Park",
"email": "dana@acme.com",
"title": "Head of People"
},
"currentCoverage": {
"planType": "fully_insured",
"carrier": "Anthem",
"pepmCents": 80000,
"renewalDate": "2026-09-01"
},
"censusMemberCount": 12
}