v64

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-088131,3912.6 MB
Portal Auth Settings

Create Team Group Mapping

Creates a new team group mapping for the specified identity provider.

post/v3/portals/{portalId}/identity-providers/{id}/team-group-mappings

Request body

team_idstring uuid required

The Konnect team ID.

groupstring required

The IdP group name.

Example request

{
  "team_id": "6801e673-cc10-498a-94cd-4271de07a0d3",
  "group": "API Engineers"
}

Response

A team group mapping for an identity provider.

idstring uuid required

The mapping ID.

team_idstring uuid required

The Konnect team ID.

groupstring required

The IdP group name.

created_atstring date-time required

Creation timestamp.

updated_atstring date-time required

Last update timestamp.

Example response

{
  "id": "a1b2c3d4-e5f6-4a8b-9c0d-1e2f3a4b5c6d",
  "team_id": "6801e673-cc10-498a-94cd-4271de07a0d3",
  "group": "API Engineers",
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}