Auth Settings
Get a Team Group Mappings
Retrieves the mappings between Konnect Teams and Identity Provider Groups. Returns a 400 error if an Identity Provider has not yet been configured.
get/v3/identity-provider/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[number]integer
Example:1
Determines which page of the entities to retrieve.
Response
A paginated collection of mappings grouped by team_id.
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"team_id": "6801e673-cc10-498a-94cd-4271de07a0d3",
"groups": [
"Tech Leads",
"API Engineers"
]
}
]
}