Lists all local teams
GET/iam/teams
Lists all local teams.
Authorization Action:
iam:teams:list
Request
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
teams object[]
id string
name string
tenants string[]
{
"teams": [
{
"id": "test-1",
"name": "My Test Team",
"tenants": [
"tenant1",
"tenant2"
]
},
{
"id": "test-2",
"name": "My Test Team 2",
"tenants": [
"tenant1"
]
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
code int32
message string
details object[]
@type string
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
Loading...