Skip to main content

providers_microsoft_entra_retrieve

GET 

/api/v3//providers/microsoft_entra/:id/

MicrosoftEntraProvider Viewset

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this Microsoft Entra Provider.

Responses

Schema
    pkID (integer)required
    namestringrequired
    property_mappingsuuid[]
    property_mappings_groupuuid[]

    Property mappings used for group creation/updating.

    componentstringrequired

    Get object component so that we know how to edit the object

    assigned_backchannel_application_slugstringrequired

    Internal application name, used in URLs.

    assigned_backchannel_application_namestringrequired

    Application's display Name.

    verbose_namestringrequired

    Return object's verbose_name

    verbose_name_pluralstringrequired

    Return object's plural verbose_name

    meta_model_namestringrequired

    Return internal model name

    client_idstringrequired
    client_secretstringrequired
    tenant_idstringrequired
    exclude_users_service_accountboolean
    filter_groupuuidnullable
    user_delete_actionOutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

    group_delete_actionOutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

    dry_runboolean

    When enabled, provider will not modify or create objects in the remote system.

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v3/providers/microsoft_entra/: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