curl --request DELETE \
--url https://api.example.com/api/v1/invitations/by-group/{groupType}/{groupId} \
--header 'x-api-key: <api-key>'{
"statusCode": 404,
"message": "Group not found",
"error": "Not Found"
}This endpoint is used to delete all invitations associated with a specific group ID. It will remove all invitations for the specified group, making them no longer valid for acceptance. This endpoint is deprecated. Use /by-scope/:scopeType/:scope instead.
curl --request DELETE \
--url https://api.example.com/api/v1/invitations/by-group/{groupType}/{groupId} \
--header 'x-api-key: <api-key>'{
"statusCode": 404,
"message": "Group not found",
"error": "Not Found"
}The type of the group, such as "team" or "project" (deprecated: use scopeType instead)
The ID of the group to delete invitations for (deprecated: use scope instead)
Successfully deleted all invitations for the group