Portal Auth Settings
List Team Group Mappings
Returns a paginated list of team group mappings for the specified identity provider.
get/v3/portals/{portalId}/identity-providers/{id}/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 team group mappings.
Example response
{
"meta": {
"page": {
"size": 10
}
},
"data": [
{
"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"
}
]
}