Skip to main content

providers_scim_update

PUT 

/api/v3//providers/scim/:id/

SCIMProvider Viewset

Request

Path Parameters

    id integerrequired

    A unique integer value identifying this SCIM Provider.

Body

required

    name stringrequired

    Possible values: non-empty

    property_mappings uuid[]
    property_mappings_group uuid[]

    Property mappings used for group creation/updating.

    url stringrequired

    Possible values: non-empty

    Base URL to SCIM requests, usually ends in /v2

    token stringrequired

    Possible values: non-empty

    Authentication token

    exclude_users_service_account boolean
    filter_group uuidnullable

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

    url stringrequired

    Base URL to SCIM requests, usually ends in /v2

    token stringrequired

    Authentication token

    exclude_users_service_account boolean
    filter_group uuidnullable
curl -L -X PUT '/api/v3/providers/scim/: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"
],
"url": "string",
"token": "string",
"exclude_users_service_account": true,
"filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body required
{
  "name": "string",
  "property_mappings": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "property_mappings_group": [
    "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  ],
  "url": "string",
  "token": "string",
  "exclude_users_service_account": true,
  "filter_group": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}