Skip to main content

providers_microsoft_entra_partial_update

PATCH 

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

MicrosoftEntraProvider Viewset

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this Microsoft Entra Provider.

Body

    name string

    Possible values: non-empty

    property_mappings uuid[]
    property_mappings_group uuid[]

    Property mappings used for group creation/updating.

    client_id string

    Possible values: non-empty

    client_secret string

    Possible values: non-empty

    tenant_id string

    Possible values: non-empty

    exclude_users_service_account boolean
    filter_group uuidnullable
    user_delete_action OutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

    group_delete_action OutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

Responses

Schema

    pk ID (integer)required
    name stringrequired
    property_mappings uuid[]
    property_mappings_group uuid[]

    Property mappings used for group creation/updating.

    component stringrequired

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

    assigned_backchannel_application_slug stringrequired

    Internal application name, used in URLs.

    assigned_backchannel_application_name stringrequired

    Application's display Name.

    verbose_name stringrequired

    Return object's verbose_name

    verbose_name_plural stringrequired

    Return object's plural verbose_name

    meta_model_name stringrequired

    Return internal model name

    client_id stringrequired
    client_secret stringrequired
    tenant_id stringrequired
    exclude_users_service_account boolean
    filter_group uuidnullable
    user_delete_action OutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

    group_delete_action OutgoingSyncDeleteAction (string)

    Possible values: [do_nothing, delete, suspend]

curl -L -X PATCH '/api/v3/providers/microsoft_entra/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"property_mappings": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"property_mappings_group": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"client_id": "string",
"client_secret": "string",
"tenant_id": "string",
"exclude_users_service_account": true,
"filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"user_delete_action": "do_nothing",
"group_delete_action": "do_nothing"
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body
{
  "name": "string",
  "property_mappings": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "property_mappings_group": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "client_id": "string",
  "client_secret": "string",
  "tenant_id": "string",
  "exclude_users_service_account": true,
  "filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "user_delete_action": "do_nothing",
  "group_delete_action": "do_nothing"
}