Skip to main content

Gets local team membership

GET 

https://apis.<domain>/iam/teams/:id/users

Lists all users of a local team. Users are listed by their membership_id.

Authorization Action:

iam:teamUsers:list

Request

Path Parameters

    id stringrequired

Responses

A successful response.

Schema
    membershipIdsstring[]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://apis.<domain>/iam/teams/:id/users");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://apis.<domain>
Parameters
— pathrequired