List federated group mappings
const url = 'http://localhost:3000/api/v1/federation/group-mappings?organizationId=550e8400-e29b-41d4-a716-446655440000&provider=ENTRA&enabled=true';const options = {method: 'GET', headers: {'X-API-Key': '<X-API-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'http://localhost:3000/api/v1/federation/group-mappings?organizationId=550e8400-e29b-41d4-a716-446655440000&provider=ENTRA&enabled=true' \ --header 'X-API-Key: <X-API-Key>'Lists federated group mappings across all organizations, optionally filtered by organization, provider, or enabled state. Requires Super Admin privileges.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Example
550e8400-e29b-41d4-a716-446655440000Filter by organization
Example
ENTRAFilter by identity provider
Example
trueFilter by enabled state
Responses
Section titled “ Responses ”Mappings retrieved successfully
object
List of federated group mappings
object
Unique mapping identifier
Organization the mapping grants membership in
Identity provider that supplies the app-role / group
Provider role value or group id carried in the token claim
Kind of external identifier (application role or group)
Human-readable label captured at mapping time
WFM role granted to users matching this mapping
Whether the mapping is active (resolved at login time)
Id of the user who created the mapping
When the mapping was created
When the mapping was last updated
Total number of mappings matching the query
Example
{ "items": [ { "id": "550e8400-e29b-41d4-a716-446655440002", "organizationId": "550e8400-e29b-41d4-a716-446655440000", "provider": "ENTRA", "externalId": "fleet-operators", "externalKind": "APP_ROLE", "externalLabel": "Fleet Operators (Entra group)", "roleId": "550e8400-e29b-41d4-a716-446655440001", "enabled": true, "createdById": "550e8400-e29b-41d4-a716-446655440003", "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-06-20T14:45:00Z" } ], "total": 3}Unauthorized
Forbidden - Super Admin required