Returns detailed information about a specific enterprise IdP (Identity Provider) group, including its organization associations and roles.
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
The name of the group to retrieve details for
Response
Number of organizations this group belongs to
Mapping of organization IDs to roles (org_admin or org_member)
curl -X GET "https://api.devin.ai/v2/enterprise/groups/Engineering" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"group_name": "Engineering",
"org_count": 3,
"role_by_org_id": {
"org_123": "org_admin",
"org_456": "org_member",
"org_789": "org_admin"
}
}