Auth Settings
List Team Group Mappings
Returns a paginated list of team group mappings for the specified identity provider. Mappings define the relationship between identity provider groups and Konnect teams.
get/v3/identity-providers/{idpId}/team-group-mappings
Query parameters
page[size]integer
Example:10
The maximum number of items to include per page. The last page of a collection may include fewer items.
page[after]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ
Request the next page of data, starting with the item after this parameter.
page[before]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ
Request the next page of data, starting with the item before this parameter.
Filter mappings by team ID or group name.
Response
A paginated collection of IDP team group mappings.
Example response
{
"meta": {
"page": {
"size": 10
}
},
"data": [
{
"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"
}
]
}