Skip to content

Get a group

Returns a single group by id.

GET /api/v1/groups/{id}

AuthRequired
Query parametersNone
BodyNone
NameTypeDescription
idstringGroup id
Authorization: Bearer <your-api-key>
Terminal window
curl -sS https://collingo.app/api/v1/groups/clgroupaaaaaaaaaaaaaaaaaa \
-H "Authorization: Bearer <your-api-key>"
{
"id": "clgroupaaaaaaaaaaaaaaaaaa",
"projectId": "clproj0123456789abcdefgh",
"parentId": null,
"technicalName": "footer",
"displayName": "Footer",
"createdAt": "2026-07-01T12:10:00Z"
}
StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
403Insufficient role (ERR_FORBIDDEN)
404Group not found
500Database or internal error