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

    id stringrequired
    group uuidrequired

    group_obj

    object

    required

    Simplified Group Serializer for user's groups

    pk uuidrequired
    num_pk integerrequired

    Get a numerical, int32 ID for the group

    name stringrequired
    is_superuser boolean

    Users added to this group will be superusers.

    parent uuidnullable
    parent_name stringnullablerequired
    attributes object
    source uuidrequired
    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