v50

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-07-068428533.0 MB
Auth Settings

Create Team Group Mapping

Creates a new team group mapping for the specified identity provider. A mapping associates an identity provider group with a Konnect team.

post/v3/identity-providers/{idpId}/team-group-mappings

Request body

team_idstring uuid required

The Konnect team ID to associate with the identity provider group.

groupstring required

The identity provider group name. Group names are case sensitive.

Example request

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

Response

A single team group mapping.

idstring uuid required

Contains a unique identifier used for this resource.

team_idstring uuid required

The Konnect team ID.

groupstring required

The identity provider group name. Group names are case sensitive.

created_atstring date-time required

An ISO-8601 timestamp representation of entity creation date.

updated_atstring date-time required

An ISO-8601 timestamp representation of entity update date.

Example response

{
  "id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
  "team_id": "6801e673-cc10-498a-94cd-4271de07a0d3",
  "group": "Tech Leads",
  "created_at": "2022-11-04T20:10:06.927Z",
  "updated_at": "2022-11-04T20:10:06.927Z"
}