Skip to main content

sources_scim_users_partial_update

PATCH 

/api/v3//sources/scim_users/:id/

SCIMSourceUser Viewset

Request

Path Parameters

    id stringrequired

    A unique value identifying this scim source user.

Body

    id string

    Possible values: non-empty

    user integer
    source uuid
    attributes

Responses

Schema

    id stringrequired
    user integerrequired

    user_obj

    object

    required

    Stripped down user serializer to show relevant users for groups

    pk ID (integer)required
    username stringrequired

    Possible values: <= 150 characters, Value must match regular expression ^[\w.@+-]+$

    Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.

    name stringrequired

    User's display name.

    is_active Active (boolean)

    Designates whether this user should be treated as active. Unselect this instead of deleting accounts.

    last_login date-timenullable
    email email

    Possible values: <= 254 characters

    attributes object
    uid stringrequired
    source uuidrequired
    attributes
curl -L -X PATCH '/api/v3/sources/scim_users/:id/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"id": "string",
"user": 0,
"source": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"attributes": {}
}'
Request Collapse all
Base URL
/api/v3
Auth
Parameters
— pathrequired
Body
{
  "id": "string",
  "user": 0,
  "source": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "attributes": {}
}