DELETE
/
api
/
v2
/
enterprise
/
organizations
/
{org_id}
/
groups
/
{group_name}
curl -X DELETE "https://api.devin.ai/api/v2/enterprise/organizations/org_123/groups/Engineering" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": "success"
}

Removes an enterprise IdP (Identity Provider) group from a specific organization.

IdP groups must be explicitly enabled for your enterprise and are only supported for some enterprise SSO connections. Contact your administrator to enable group support.

Path Parameters

org_id
string
required

The unique identifier of the organization to remove the group from

group_name
string
required

The name of the group to remove from the organization

Response

status
string
default:"success"

Status of the operation

curl -X DELETE "https://api.devin.ai/api/v2/enterprise/organizations/org_123/groups/Engineering" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "status": "success"
}