Skip to main content

sources_scim_groups_retrieve

GET 

/api/v3//sources/scim_groups/:id/

SCIMSourceGroup Viewset

Request

Path Parameters

    id stringrequired

    A unique value identifying this scim source group.

Responses

Schema
    idstringrequired
    groupuuidrequired
    group_obj object

    Simplified Group Serializer for user's groups

    pkuuidrequired
    num_pkintegerrequired

    Get a numerical, int32 ID for the group

    namestringrequired
    is_superuserboolean

    Users added to this group will be superusers.

    parentuuidnullable
    parent_namestringnullablerequired
    attributes object
    property name*any
    sourceuuidrequired
    attributes

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/sources/scim_groups/:id/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired