Skip to content

Delete a group

Deletes a group and cascades to all nested sub-groups and entries (including their translations). This cannot be undone.

DELETE /api/v1/groups/{id}

AuthRequired
Query parametersNone
BodyNone
NameTypeDescription
idstringGroup id
Authorization: Bearer <your-api-key>
Terminal window
curl -sS -X DELETE https://collingo.app/api/v1/groups/clgroupaaaaaaaaaaaaaaaaaa \
-H "Authorization: Bearer <your-api-key>" \
-o /dev/null -w "%{http_code}\n"

Empty body. The group and its descendants have been deleted.

StatusWhen
401Missing or invalid API key (ERR_UNAUTHORIZED)
403Insufficient role (ERR_FORBIDDEN)
404Group not found
500Database or internal error