Get a group
What it does
Section titled “What it does”Returns a single group by id.
Request
Section titled “Request”GET /api/v1/groups/{id}
| Auth | Required |
| Query parameters | None |
| Body | None |
Path parameters
Section titled “Path parameters”| Name | Type | Description |
|---|---|---|
id | string | Group id |
Headers
Section titled “Headers”Authorization: Bearer <your-api-key>Example
Section titled “Example”curl -sS https://collingo.app/api/v1/groups/clgroupaaaaaaaaaaaaaaaaaa \ -H "Authorization: Bearer <your-api-key>"Response
Section titled “Response”200 OK
Section titled “200 OK”{ "id": "clgroupaaaaaaaaaaaaaaaaaa", "projectId": "clproj0123456789abcdefgh", "parentId": null, "technicalName": "footer", "displayName": "Footer", "createdAt": "2026-07-01T12:10:00Z"}Errors
Section titled “Errors”| Status | When |
|---|---|
401 | Missing or invalid API key (ERR_UNAUTHORIZED) |
403 | Insufficient role (ERR_FORBIDDEN) |
404 | Group not found |
500 | Database or internal error |