Skip to main content

sources_scim_groups_update

PUT 

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

SCIMSourceGroup Viewset

Request

Path Parameters

    id stringrequired

    A unique value identifying this scim source group.

Body

required

    id stringrequired

    Possible values: non-empty

    group uuidrequired
    source uuidrequired
    attributes

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

    Possible values: <= 80 characters

    is_superuser boolean

    Users added to this group will be superusers.

    parent uuidnullable
    parent_name stringnullablerequired
    attributes object
    source uuidrequired
    attributes
curl -L -X PUT '/api/v3/sources/scim_groups/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"id": "string",
"group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"source": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"attributes": {}
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body required
{
  "id": "string",
  "group": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "source": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "attributes": {}
}